LANCommander/LANCommander.SDK/Abstractions/IServerAddressProvider.cs

9 lines
174 B
C#
Raw Permalink Normal View History

using System;
namespace LANCommander.SDK.Abstractions;
public interface IServerAddressProvider
{
void SetServerAddress(Uri serverAddress);
Uri GetServerAddress();
}