using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MagMan.Data.Admin.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 } }