1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-26 08:01:45 +02:00
GiantsTools/Giants.Services/Services/IServerRegistryService.cs
2020-08-09 22:11:10 -07:00

15 lines
307 B
C#

namespace Giants.Services
{
using System.Collections.Generic;
using System.Threading.Tasks;
public interface IServerRegistryService
{
Task DeleteServer(string ipAddress);
Task<IEnumerable<ServerInfo>> GetAllServers();
Task AddServer(ServerInfo server);
}
}