mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
10 lines
336 B
C#
10 lines
336 B
C#
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;
|
|
} |