CRUD - Assets create

This commit is contained in:
anomny
2025-10-04 14:37:10 +02:00
parent a34534eb62
commit ef3be7cb41
3 changed files with 71 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
namespace Berufsschule_HAM.Models;
public class AssetsCreateRequestModel
{
public required string Cn { get; set; }
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;
}