using System; using System.Collections.Generic; using System.Text; namespace Domain.Models.FileUploads { public class UploadedFile { public Guid Id { get; set; } /// /// 文件原名称 /// public string OriginalName { get; set; } /// /// 文件名 /// public string FileName { get; set; } /// /// ContentType /// public string ContentType { get; set; } /// /// 扩展名 /// public string Extension { get; set; } /// /// 文件路径 /// public string Path { get; set; } /// /// 上传时间 /// public DateTime UploadedTime { get; set; } /// /// 上传者 /// public string UploadedBy { get; set; } public bool IsDeleted { get; set; } public Guid DeleteBy { get; set; } public DateTime DeleteTime { get; set; } } }