IW4M-Admin/SharedLibrary/Dtos/PenaltyInfo.cs

22 lines
627 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharedLibrary.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 string Offense { 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; }
}
}