wabbajack/Wabbajack.Server/DTOs/AuthoredFilesSummary.cs

14 lines
401 B
C#
Raw Normal View History

2020-05-10 01:35:42 +00:00
using System;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Server.DTOs;
public class AuthoredFilesSummary
2020-05-10 01:35:42 +00:00
{
2021-10-23 16:51:17 +00:00
public long Size { get; set; }
public string OriginalFileName { get; set; }
public string Author { get; set; }
public DateTime LastTouched { get; set; }
public DateTime? Finalized { get; set; }
public string MungedName { get; set; }
public string ServerAssignedUniqueId { get; set; }
}