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