11 lines
323 B
C#
11 lines
323 B
C#
using MessagePack;
|
|
|
|
namespace MareSynchronos.API.Dto.Files;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record UploadFileDto : ITransferFileDto
|
|
{
|
|
public string Hash { get; set; } = string.Empty;
|
|
public bool IsForbidden { get; set; } = false;
|
|
public string ForbiddenBy { get; set; } = string.Empty;
|
|
} |