using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WGShare.Domain.DTOs.File { public class ShareFileOutputDTO { public string Id { get; set; } /// /// 文件地址 /// public string FileUrl { get; set; } /// /// 文件大小 kb /// public double Size { get; set; } /// /// 文件名称 /// public string FileName { get; set; } /// /// 会议房间Id /// public string RoomId { get; set; } public string UserId { get; set; } /// /// 上传者名称 /// public string UserName { get; set; } /// /// 更新时间 /// public DateTime ModifyTime { get; set; } public int DownloadCount { get; set; } } }