namespace Atomx.Admin.Client.Models { public class UploadFileModel { public long Id { get; set; } /// /// 文件类型 /// public int Type { get; set; } /// /// 文件名 /// public string Name { get; set; } = string.Empty; /// /// 存放路径 /// public string Path { get; set; } = string.Empty; /// /// 文件扩展 /// public string Extension { get; set; } = string.Empty; /// /// 文件扩展 /// public string ContentType { get; set; } = string.Empty; /// /// 创建用户ID /// public long CreateUid { get; set; } /// /// 创建用户名 /// public string CreateBy { get; set; } = string.Empty; } }