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

9 lines
172 B
C#

namespace MareSynchronos.API
{
public record ForbiddenFileDto
{
public string Hash { get; set; }
public string ForbiddenBy { get; set; }
}
}