mirror-ac/server/Database/Entity/Report/IReport.cs

17 lines
332 B
C#
Raw Normal View History

2023-09-11 19:39:00 +02:00
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();
}
}