1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-03 03:51:45 +02:00
GiantsTools/Giants.Services/Services/IServerRegistryService.cs

16 lines
324 B
C#
Raw Normal View History

namespace Giants.Services
{
using System;
using System.Collections.Generic;
using System.Net;
using System.Text;
using System.Threading.Tasks;
public interface IServerRegistryService
{
Task<IEnumerable<ServerInfo>> GetAllServers();
2020-08-09 01:31:16 +02:00
Task AddServer(ServerInfo server);
}
}