1
0
Fork 0
mirror of https://github.com/donnaskiez/ac.git synced 2024-11-21 22:24:08 +01:00
mirror-ac/server/Database/Entity/Report/IReportEntity.cs

20 lines
416 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
{
2023-09-21 16:01:47 +02:00
/// <summary>
/// Implements the IReport interface
/// </summary>
2023-09-11 19:52:23 +02:00
public interface IReportEntity
2023-09-11 19:39:00 +02:00
{
/// <summary>
/// Inserts the report into the database.
/// </summary>
void InsertReport();
}
}