namespace Yw.Dto { /// /// /// public class AddBimfaceFileInput { /// /// 平台id /// [Required] public string BimfaceId { get; set; } /// /// 名称 /// [Required] public string Name { get; set; } /// /// 模型类型 /// [Required] public int ModelType { get; set; } /// /// 文件状态 /// [Required] public int FileStatus { get; set; } /// /// 文件大小 /// public string FileSize { get; set; } /// /// 文件格式 /// [Required] public int FormatType { get; set; } /// /// 文件后缀 /// public string FileSuffix { get; set; } /// /// 存储URL /// public string StorageUrl { get; set; } /// /// 参数 /// public Dictionary Paras { get; set; } /// /// 标签 /// public List Flags { get; set; } /// /// 标记 /// public string TagName { get; set; } /// /// 说明 /// public string Description { get; set; } } }