10 lines
200 B
C#
10 lines
200 B
C#
namespace NozCli.Core.Models;
|
|
|
|
public record ServerCapabilities(
|
|
string Server,
|
|
bool Enabled,
|
|
bool AllowPush,
|
|
bool AllowDelete,
|
|
bool AllowVault,
|
|
bool AllowRebuild
|
|
);
|