Files
ClubPenguinApi/MareSynchronosAPI/UploadFileDto.cs
Stanley Dimant af8516d44a add API solution
2022-07-17 00:04:20 +02:00

10 lines
275 B
C#

namespace MareSynchronos.API
{
public record UploadFileDto : ITransferFileDto
{
public string Hash { get; set; } = string.Empty;
public bool IsForbidden { get; set; } = false;
public string ForbiddenBy { get; set; } = string.Empty;
}
}