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