2018-02-14 13:01:26 -06:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-04-08 01:44:42 -05:00
|
|
|
|
namespace SharedLibraryCore.Dtos
|
2018-02-14 13:01:26 -06:00
|
|
|
|
{
|
2018-03-06 01:22:19 -06:00
|
|
|
|
public class PenaltyInfo : SharedInfo
|
2018-02-14 13:01:26 -06:00
|
|
|
|
{
|
|
|
|
|
public string OffenderName { get; set; }
|
|
|
|
|
public int OffenderId { get; set; }
|
|
|
|
|
public string PunisherName { get; set; }
|
|
|
|
|
public int PunisherId { get; set; }
|
2018-02-23 23:56:03 -06:00
|
|
|
|
public string PunisherLevel { get; set; }
|
2018-08-07 13:43:09 -05:00
|
|
|
|
public int PunisherLevelId { get; set; }
|
2018-02-14 13:01:26 -06:00
|
|
|
|
public string Offense { get; set; }
|
2018-05-30 20:50:20 -05:00
|
|
|
|
public string AutomatedOffense { get; set; }
|
2018-02-14 13:01:26 -06:00
|
|
|
|
public string Type { get; set; }
|
2018-02-21 19:29:23 -06:00
|
|
|
|
public string TimePunished { get; set; }
|
|
|
|
|
public string TimeRemaining { get; set; }
|
2018-02-14 13:01:26 -06:00
|
|
|
|
}
|
|
|
|
|
}
|