mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
439 B
C#
17 lines
439 B
C#
using System;
|
|
|
|
namespace Wabbajack.Lib.GraphQL.DTOs
|
|
{
|
|
public class UploadedFile
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string MungedName { get; set; }
|
|
public DateTime UploadDate { get; set; }
|
|
public string Uploader { get; set; }
|
|
public Uri Uri { get; set; }
|
|
public string Hash { get; set; }
|
|
public long Size { get; set; }
|
|
}
|
|
}
|