using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GWMS.Data.DatabaseModels { [Keyless] public class TableCount { #region Public Properties public int Count { get; set; } public string TableName { get; set; } #endregion Public Properties } }