mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-20 16:51:21 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
12 lines
325 B
C#
Executable file
12 lines
325 B
C#
Executable file
using System.Collections.Generic;
|
|
|
|
namespace FSO.Server.Database.DA.LotAdmit
|
|
{
|
|
public interface ILotAdmit
|
|
{
|
|
List<DbLotAdmit> GetLotInfo(int lot_id);
|
|
List<uint> GetLotAdmitDeny(int lot_id, byte admit_mode);
|
|
void Create(DbLotAdmit bookmark);
|
|
bool Delete(DbLotAdmit bookmark);
|
|
}
|
|
}
|