mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 16:31:21 +00:00
13 lines
295 B
C#
13 lines
295 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FSO.Server.Database.DA.Hosts
|
|||
|
{
|
|||
|
public interface IHosts
|
|||
|
{
|
|||
|
IEnumerable<DbHost> All();
|
|||
|
DbHost Get(string call_sign);
|
|||
|
void CreateHost(DbHost host);
|
|||
|
void SetStatus(string call_sign, DbHostStatus status);
|
|||
|
}
|
|||
|
}
|