26 lines
616 B
C#
26 lines
616 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace EgtBEAMWALL.DataLayer.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella dei USER di MySql
|
|
/// </summary>
|
|
[Table("user")]
|
|
public class UserPriv
|
|
{
|
|
#region Public Properties
|
|
|
|
[Column("Host", Order = 1), Key]
|
|
public string Host { get; set; } = "";
|
|
|
|
[Column("User", Order = 2), Key]
|
|
public string User { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |