IW4M-Admin/SharedLibraryCore/Helpers/Report.cs

14 lines
317 B
C#
Raw Normal View History

2022-04-19 19:43:58 -04:00
using System;
using SharedLibraryCore.Database.Models;
namespace SharedLibraryCore.Helpers
{
public class Report
{
public EFClient Target { get; set; }
public EFClient Origin { get; set; }
2022-01-26 11:32:16 -05:00
public string Reason { get; set; }
2022-04-19 19:43:58 -04:00
public DateTime ReportedOn { get; set; }
}
2022-04-19 19:43:58 -04:00
}