FileModel.cs 543 Bytes
using System;

namespace NCC.Common.FileManage
{
    /// <summary>
    /// 附件模型
    /// 版 本:V3.0.0
    /// 版 权:Wesley(https://www.NCCsoft.com)
    /// 作 者:NCC开发平台组
    /// </summary>
    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; }
    }
}