mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 15:01:56 +00:00
Added filter to /Users/Index to filter out fields
This commit is contained in:
@@ -1,5 +1,16 @@
|
||||
namespace Berufsschule_HAM.Models;
|
||||
|
||||
public class UsersIndexRequestModel
|
||||
{
|
||||
public string? Uid { get; set; } = null;
|
||||
public bool Cn { get; set; } = true;
|
||||
public bool Sn { get; set; } = true;
|
||||
public bool Title { get; set; } = true;
|
||||
public bool Description { get; set; } = true;
|
||||
public bool JpegPhoto { get; set; } = true;
|
||||
public bool UserPassword { get; set; } = true;
|
||||
}
|
||||
|
||||
public class UsersModifyRequestModel
|
||||
{
|
||||
public required string uid { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user