Files
mapo-core/MP.Data/DbModels/DbSizeModel.cs
T
2026-06-03 12:21:45 +02:00

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;
}
}