Files
gwms/GWMS.Data/DatabaseModels/TableCount.cs
T
2021-06-25 15:26:15 +02:00

20 lines
407 B
C#

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