mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
9 lines
245 B
C#
9 lines
245 B
C#
namespace Daybreak.Services.MDns;
|
|
|
|
internal sealed class ServiceRegistration
|
|
{
|
|
public required string Name { get; init; }
|
|
public required DateTime Expiration { get; init; }
|
|
public required IReadOnlyList<Uri> Uris { get; init; }
|
|
}
|