mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 18:07:22 +01:00
9 lines
275 B
C#
9 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;
|
|
}
|
|
}
|