17 lines
450 B
C#
17 lines
450 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MP.Data.DbModels
|
|
{
|
|
public class DbSizeModel
|
|
{
|
|
[Key]
|
|
public string DbName { get; set; } = "";
|
|
[Precision(18, 6)]
|
|
public decimal DbSizeMb { get; set; } = 0;
|
|
public int NumTables { get; set; } = 0;
|
|
public string BigTable { get; set; } = "";
|
|
public long BigTableRows { get; set; } = 0;
|
|
}
|
|
}
|