25 lines
559 B
C#
25 lines
559 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>
|
|
/// Tabella dei Database di MySql
|
|
/// </summary>
|
|
[Table("Database"), Keyless]
|
|
public class DbModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Column("Database", Order = 1)]
|
|
public string Database { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|