using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//
// This is here so CodeMaid doesn't reorganize this document
//
namespace MP.MONO.Data.DbModels
{
///
/// Classe fake x il conteggio tabelle e check preliminari
///
[Keyless]
public class TableCount
{
#region Public Properties
public int Count { get; set; } = 0;
public string TableName { get; set; } = "";
#endregion Public Properties
}
}