mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
14 lines
317 B
C#
14 lines
317 B
C#
using System;
|
|
using SharedLibraryCore.Database.Models;
|
|
|
|
namespace SharedLibraryCore.Helpers
|
|
{
|
|
public class Report
|
|
{
|
|
public EFClient Target { get; set; }
|
|
public EFClient Origin { get; set; }
|
|
public string Reason { get; set; }
|
|
public DateTime ReportedOn { get; set; }
|
|
}
|
|
}
|