3a5b77314a
- DTO e MOdelli NON riorganizzabili - refresh globale ordinamenti - test rebuild
38 lines
908 B
C#
38 lines
908 B
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.DatabaseModels
|
|
{
|
|
[Table("LinkMenuJQM")]
|
|
public partial class LinkMenu
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int idxLink { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string TipoLink { get; set; } = "";
|
|
|
|
public int ordine { get; set; } = 0;
|
|
|
|
[MaxLength(50)]
|
|
public string Testo { get; set; } = "";
|
|
|
|
[MaxLength(50)]
|
|
public string NavigateUrl { get; set; } = "";
|
|
|
|
[MaxLength(50)]
|
|
public string icona { get; set; } = "";
|
|
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |