Implemented Groups edit buttons

This commit is contained in:
2025-10-12 16:13:41 +02:00
parent 4b6fb74a76
commit 164831c903
5 changed files with 237 additions and 27 deletions

View File

@@ -21,8 +21,12 @@ public class GroupsCreateRequestModel
public class GroupsModifyRequestModel
{
[JsonPropertyName("Cn")]
public required string Cn { get; set; }
[JsonPropertyName("NewCn")]
public string? NewCn { get; set; } = null;
[JsonPropertyName("GidNumber")]
public string? GidNumber { get; set; } = null;
public GroupPermissions? Permissions { get; set; } = null;
[JsonPropertyName("Description")]
public GroupDescription? Description { get; set; } = null;
}