IW4M-Admin/SharedLibraryCore/Dtos/PenaltyInfo.cs

24 lines
733 B
C#
Raw Normal View History

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-03-06 02:22:19 -05:00
public class PenaltyInfo : SharedInfo
{
public string OffenderName { get; set; }
public int OffenderId { get; set; }
public string PunisherName { get; set; }
public int PunisherId { get; set; }
public string PunisherLevel { get; set; }
public int PunisherLevelId { get; set; }
public string Offense { get; set; }
public string AutomatedOffense { get; set; }
public string Type { get; set; }
2018-02-21 20:29:23 -05:00
public string TimePunished { get; set; }
public string TimeRemaining { get; set; }
}
}