21 lines
483 B
C#
21 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class LinkMenuJqm
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Icona { get; set; }
|
|
public int IdxLink { get; set; }
|
|
public string NavigateUrl { get; set; }
|
|
public int? Ordine { get; set; }
|
|
public string Testo { get; set; }
|
|
public string TipoLink { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |