mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 19:37:23 +01:00
8 lines
173 B
C#
8 lines
173 B
C#
namespace MareSynchronos.API
|
|
{
|
|
public record BannedUserDto
|
|
{
|
|
public string CharacterHash { get; set; }
|
|
public string Reason { get; set; }
|
|
}
|
|
}
|