25 lines
573 B
C#
25 lines
573 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Classe fake x il conteggio tabelle e check preliminari
|
|
/// </summary>
|
|
[Keyless]
|
|
public class TableCount
|
|
{
|
|
#region Public Properties
|
|
|
|
public int Count { get; set; } = 0;
|
|
public string TableName { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|