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