Completo riorganizzazione progetti:

- Core
- Data.Admin
This commit is contained in:
Samuele Locatelli
2024-01-10 17:55:06 +01:00
parent 53332b389f
commit 983586552b
64 changed files with 270 additions and 514 deletions
@@ -0,0 +1,26 @@
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 USER di MySql
/// </summary>
[Table("user")]
public class UserPriv
{
#region Public Properties
[Column("Host", Order = 1)]
public string Host { get; set; } = "";
[Column("User", Order = 2)]
public string User { get; set; } = "";
#endregion Public Properties
}
}