00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 using System;
00013
00014 namespace Mcs.Epm.MicrosoftProject.mpFx.Client.Shared
00015 {
00016
00017
00018
00019 public class PluginDescriptor
00020 {
00021 #region Public Properties
00022
00023 public string Name { get; set; }
00024
00025 public string Description { get; set; }
00026
00027 public string Author { get; set; }
00028
00029 public Version Version { get; set; }
00030
00031 public string Preview { get; set; }
00032
00033 public string Tag { get; set; }
00034
00035 public string Zip { get; set; }
00036
00037 public Guid Guid { get; set; }
00038
00039 #endregion
00040 }
00041 }