namespace Admin.NET.Core.Service; public class FileOutput { /// /// Id /// public long Id { get; set; } /// /// 名称 /// public string Name { get { return this.Id + this.Suffix; } } /// /// URL /// public string Url { get; set; } /// /// 大小 /// public string SizeKb { get; set; } /// /// 后缀 /// public string Suffix { get; set; } /// /// 路径 /// public string FilePath { get; set; } }