* add messagepack attributes * fix isnullorempty * bump api version --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
10 lines
256 B
C#
10 lines
256 B
C#
using MessagePack;
|
|
|
|
namespace MareSynchronos.API.Dto.Files;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record ForbiddenFileDto
|
|
{
|
|
public string Hash { get; set; } = string.Empty;
|
|
public string ForbiddenBy { get; set; } = string.Empty;
|
|
} |