mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-28 16:10:28 -05:00
added meta property and service for clients
started workign on a new profile page for clients
This commit is contained in:
18
SharedLibrary/Dtos/ProfilePenalty.cs
Normal file
18
SharedLibrary/Dtos/ProfilePenalty.cs
Normal file
@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user