1
0

12 lines
328 B
C#

namespace Flawless.Communication.Response;
public record ServerStatusResponse
{
public required string? FriendlyName { get; init; }
public required bool AllowPublicRegister { get; set; }
public required bool AllowWebHook { get; set; }
public required bool RequireInitialization { get; set; }
}