mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +01:00
14 lines
289 B
C#
14 lines
289 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MareSynchronos.API
|
|
{
|
|
public class BannedUserDto
|
|
{
|
|
public string CharacterHash { get; set; }
|
|
public string Reason { get; set; }
|
|
}
|
|
}
|