Added Assets update CRUD element

This commit is contained in:
2025-10-03 23:07:55 +02:00
parent a803218982
commit b262a73d9d
6 changed files with 139 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
namespace Berufsschule_HAM.Models;
public class AssetsModifyRequestModel
{
public required string Cn { get; set; }
public string? NewCn { get; set; } = null;
public AssetDescription? Description { get; set; } = null;
public string? Location { get; set; } = null;
public string? Name { get; set; } = null;
public string? Owner { get; set; } = null;
public string? SerialNumber { get; set; } = null;
}