using System; namespace NCC.Common.FileManage { /// /// 附件模型 /// 版 本:V3.0.0 /// 版 权:Wesley(https://www.NCCsoft.com) /// 作 者:NCC开发平台组 /// public class FileModel { public string FileId { get; set; } public string FileName { get; set; } public string FileSize { get; set; } public DateTime FileTime { get; set; } public string FileState { get; set; } public string FileType { get; set; } } }