Mineplex2018-withcommit/Website/LOC.Core/Model/Account/RemovedPunishment.cs

18 lines
369 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
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; }
}
}