Added asset id counter to migrations, fixed migrations async issue

This commit is contained in:
2025-10-12 17:55:21 +02:00
parent 5ff75e162d
commit 434b0952dc
4 changed files with 34 additions and 15 deletions

View File

@@ -70,4 +70,9 @@ public class AssetsTableViewModel
public required string AssetCn { get; set; }
public string? AssetName { get; set; }
public string? LocationName { get; set; }
}
public class AssetsMetadataModel
{
public int CnCounter { get; set; }
}