71fc5a81d4
- fix gestione permessi x nagMan + check buttons
42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[Table("LinkMenuJQM")]
|
|
public partial class LinkMenuModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int idxLink { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string TipoLink { get; set; } = "";
|
|
|
|
[Column("Ordine")]
|
|
public int Ordine { get; set; } = 0;
|
|
|
|
[MaxLength(50)]
|
|
public string Testo { get; set; } = "";
|
|
|
|
[MaxLength(50)]
|
|
public string NavigateUrl { get; set; } = "";
|
|
|
|
[MaxLength(50), Column("icona")]
|
|
public string Icona { get; set; } = "";
|
|
|
|
[MaxLength(50)]
|
|
public string Ruolo { get; set; } = "";
|
|
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |