using LearningOfficer.OA.Common.Response; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.ToolKit { public class ToolKitDownloadLogsViewDto { /// /// 工具包名称 /// public string ToolName { get; set; } = null!; /// /// 隶属方案 /// public string ProblemTitle { get; set; } = null!; /// /// 下载记录 /// public PageResponse result { get; set; } } public class ToolKitDownloadLogsDetailsViewDto { /// /// 下载人名称 /// public string DownloadUserName { get; set; } = null!; /// /// 下载时间 /// public DateTime DowloadTime { get; set; } } }