IW4M-Admin/SharedLibraryCore/Helpers/Report.cs
RaidMax 95d64df321 combined Penalty and EFPenalty
moved some classes around
2019-05-29 16:55:35 -05:00

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.Helpers
{
public class Report
{
public EFClient Target { get; set; }
public EFClient Origin { get; set; }
public string Reason { get; set; }
}
}