file360

Log | Files | Refs

settinglist.cs (463B)


      1 using System.Text;
      2 
      3 namespace File360
      4 {
      5     class settinglist
      6     {
      7         public string SettingName { set; get; }
      8         public string SettingDescription { set; get; }
      9         public string SettingPicture { set; get; }
     10 
     11         public settinglist(string name, string description, string picture)
     12         {
     13             this.SettingName = name;
     14             this.SettingDescription = description;
     15             this.SettingPicture = picture;
     16         }
     17     }
     18 }
     19 
     20