31 lines
775 B
C#
31 lines
775 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
|
|
namespace GWMS.Data.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella Roles
|
|
/// </summary>
|
|
[Table("Auths")]
|
|
public class AuthModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, Column("AuthRole", Order = 0), MaxLength(50)]
|
|
public string AuthRole { get; set; } = "";
|
|
|
|
[Column("Description", Order = 1), MaxLength(250)]
|
|
public string Description { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |