Implemented frontend Locations update buttons

This commit is contained in:
2025-10-25 16:20:17 +02:00
parent 8f47b6a1a8
commit 20d7ceb784
4 changed files with 160 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
namespace Berufsschule_HAM.Models;
using System.Text.Json;
using System.Text.Json.Serialization;
using Berufsschule_HAM.Exceptions;
public class LocationModel
{
@@ -22,8 +23,11 @@ public class LocationModel
}
public class LocationsDescription
{
[JsonPropertyName("Location")]
public string? Location { get; set; }
[JsonPropertyName("RoomNumber")]
public string? RoomNumber { get; set; }
[JsonPropertyName("Seat")]
public string? Seat { get; set; }
}