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