mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
16 lines
338 B
C#
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();
|
|
}
|
|
}
|