namespace HStation.Dto
{
public class AddXhsProjectItemInput
{
[Required]
public long ProjectID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 参数
///
public string Paras { get; set; }
///
/// 标签
///
public string Flags { get; set; }
///
/// 标志
///
public string TagName { get; set; }
///
/// 使用状态
///
public int UseStatus { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
/// 创建人
///
public long CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 版本
///
public int Version { get; set; }
}
}