Inizio gestione calcolo spazio DB
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user