mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 23:11:54 +00:00
Added Locations Create CRUD element, Updated Locations LDAP service methods
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
namespace Berufsschule_HAM.Models;
|
||||
|
||||
public class LocationsCreateRequestModel
|
||||
{
|
||||
public required LocationsDescription LocationsDescription { get; set; }
|
||||
}
|
||||
|
||||
public class LocationsModifyRequestModel
|
||||
{
|
||||
public required string Cn { get; set; }
|
||||
public string? NewCn { get; set; } = null;
|
||||
public LocationsDescription? Description { get; set; } = null;
|
||||
public string? Location { get; set; } = null;
|
||||
public string? Street { get; set; } = null;
|
||||
public required string Location { get; set; }
|
||||
public required LocationsDescription Description { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user