Added Locations update CRUD element, fixed locations index missing cn attribute

This commit is contained in:
2025-10-03 22:13:39 +02:00
parent 7eff665f81
commit 4d0d3ac473
5 changed files with 107 additions and 5 deletions

View 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;
}