15 lines
386 B
C#
15 lines
386 B
C#
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;
|
|
}
|
|
}
|