Added filter by username for /Users/Index, implemented /Users/Update

This commit is contained in:
2025-09-28 21:41:04 +02:00
parent c2525cf40e
commit 2f894881b2
3 changed files with 100 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
namespace Berufsschule_HAM.Models;
public class UsersModifyRequestModel
{
public required string uid { get; set; }
public string? NewUid { get; set; } = null;
public string? Cn { get; set; } = null;
public string? Sn { get; set; } = null;
public string? Title { get; set; } = null;
public string? Description { get; set; } = null;
public string? JpegPhoto { get; set; } = null;
public string? UserPassword { get; set; } = null;
}