2018-02-14 13:01:26 -06:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibrary.Dtos
|
|
|
|
|
{
|
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-02-14 13:01:26 -06:00
|
|
|
|
public string Offense { get; set; }
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|