mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
Added Locations update CRUD element, fixed locations index missing cn attribute
This commit is contained in:
10
src/Models/LocationsRequestModels.cs
Normal file
10
src/Models/LocationsRequestModels.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Berufsschule_HAM.Models;
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user