1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00
IW4M-Admin/SharedLibrary/Dtos/ProfilePenalty.cs
RaidMax 7a15980a0c added meta property and service for clients
started workign on a new profile page for clients
2018-02-14 13:01:26 -06:00

19 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharedLibrary.Dtos
{
public class ProfilePenalty
{
public string OffenderName { get; set; }
public int OffenderId { get; set; }
public string PunisherName { get; set; }
public int PunisherId { get; set; }
public string Offense { get; set; }
public string Type { get; set; }
}
}