mirror-ac/server/Database/Entity/Report/IReportEntity.cs
2023-09-12 03:52:23 +10:00

16 lines
338 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 IReportEntity
{
/// <summary>
/// Inserts the report into the database.
/// </summary>
void InsertReport();
}
}