mirror-ac/server/Database/Entity/Report/IReport.cs
lhodges1 81f379730b e
2023-09-12 03:39:00 +10:00

16 lines
332 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace server.Database.Entity.Report
{
public interface IReport
{
/// <summary>
/// Inserts the report into the database.
/// </summary>
void InsertReport();
}
}