noz-cli/NozCli.Core/Models/ServerCapabilities.cs
2026-05-16 19:25:39 +02:00

10 lines
200 B
C#

namespace NozCli.Core.Models;
public record ServerCapabilities(
string Server,
bool Enabled,
bool AllowPush,
bool AllowDelete,
bool AllowVault,
bool AllowRebuild
);