Inizio gestione calcolo spazio DB

This commit is contained in:
Samuele Locatelli
2025-07-04 10:54:30 +02:00
parent 4f841a09ad
commit 0829144478
18 changed files with 345 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.ComponentModel.DataAnnotations;
namespace MP.Data.DbModels
{
public class DbSizeModel
{
[Key]
public string DbName { get; set; } = "";
public decimal DbSizeMb { get; set; } = 0;
public int NumTables { get; set; } = 0;
public string BigTable { get; set; } = "";
public long BigTableRows { get; set; } = 0;
}
}