Added asset inventory information and action in AssetsController

This commit is contained in:
2025-10-13 17:24:25 +02:00
parent 5fb7a1021b
commit 0cc806a0a3
3 changed files with 24 additions and 7 deletions

View File

@@ -28,4 +28,6 @@ public class AssetsModifyRequestModel
public string? Owner { get; set; } = null;
[JsonPropertyName("SerialNumber")]
public string? SerialNumber { get; set; } = null;
[JsonPropertyName("UpdateInventory")]
public bool UpdateInventory { get; set; } = false;
}