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