1
0
Files
mineplex-crepe/Website/LOC.Core/Model/Account/RemovedPunishment.cs
2021-08-19 16:35:32 +07:00

18 lines
369 B
C#

namespace LOC.Core.Model.Account
{
public class RemovedPunishment
{
public int RemovedPunishmentId { get; set; }
public int PunishmentId { get; set; }
public int AdminId { get; set; }
public string PunishmentType { get; set; }
public string Reason { get; set; }
public long DateTime { get; set; }
}
}