ed83c4c011
fix bug with unbanned players still showing as banned via lock icon move player based stuff into client class finally renamed Player to EFClient via partial class don't try to run this build because it's in between stages
17 lines
371 B
C#
17 lines
371 B
C#
using SharedLibraryCore.Database.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibraryCore.Objects
|
|
{
|
|
public class Report
|
|
{
|
|
public EFClient Target { get; set; }
|
|
public EFClient Origin { get; set; }
|
|
public string Reason { get; set; }
|
|
}
|
|
}
|