IW4M-Admin/SharedLibraryCore/Objects/Report.cs
RaidMax f4ac815d07 hopefully finished with RCon changes.
added more tests.
fixed issues from event changes (there's most definitely still issues related to that)
2018-10-02 12:39:08 -05:00

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; }
}
}