mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
added more tests. fixed issues from event changes (there's most definitely still issues related to that)
16 lines
326 B
C#
16 lines
326 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibraryCore.Objects
|
|
{
|
|
public class Report
|
|
{
|
|
public Player Target { get; set; }
|
|
public Player Origin { get; set; }
|
|
public String Reason { get; set; }
|
|
}
|
|
}
|