namespace Yw.Application
{
///
/// 添加通用
///
public class AddSysCommFileInput
{
///
/// 组名称
///
public string GroupName { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 文件格式
///
[Required]
public eFileFormat FileFormat { get; set; }
///
/// 分类
///
[Required]
public string Catagory { get; set; }
///
/// 标签
///
public List Flags { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}