more status

This commit is contained in:
2025-01-23 18:52:25 -06:00
parent b13acf36ed
commit 64ec597a1c
5 changed files with 202 additions and 5 deletions
+2 -1
View File
@@ -14,7 +14,7 @@ public class InventoryItems
public string Name { get; set; }
public string Brand { get; set; }
public string? SerialNumber { get; set; }
public string? Status { get; set; }
public string? StatusId { get; set; }
public float? RentalPrice { get; set; }
public float? ReplacementCost { get; set; }
public string? Notes { get; set; }
@@ -24,4 +24,5 @@ public class ItemStatus
{
public string Id { get; set; }
public string Name { get; set; }
public ICollection<InventoryItems> Items { get; } = new List<InventoryItems>();
}