using System.Xml.Serialization;
namespace SmartCoalApplication.Base.SettingModel
{
[XmlRoot("ROOT")]
///
/// 常规设置-用户信息
///
public class UserInfoModel
{
///
/// 公司名称
///
public string CompanyName { get; set; }
///
/// 省份
///
public string Province { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 联系人
///
public string Contact { get; set; }
///
/// 联系电话
///
public string Phone { get; set; }
///
/// 邮件
///
public string Email { get; set; }
///
/// 公司logo
///
public string Logo { get; set; }
///
/// 显微镜型号
///
public string Model { get; set; }
///
/// 显微镜SN码
///
public string SN { get; set; }
///
/// 摄像头
///
public string Camera { get; set; }
///
/// 接口
///
public string Interface { get; set; }
}
}