mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
8 lines
234 B
C#
8 lines
234 B
C#
using Daybreak.Shared.Models;
|
|
|
|
namespace Daybreak.Shared.Services.MDns;
|
|
public interface IMDomainNameService
|
|
{
|
|
DnsRegistrationToken RegisterDomain(string service, ushort port, string subType, string protocol = "_http._tcp");
|
|
}
|