23 lines
693 B
C#
23 lines
693 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace StockMan.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("Permessi")]
|
|
public partial class PermessiModel
|
|
{
|
|
[Key]
|
|
public string COD_PERMESSO { get; set; } = null!;
|
|
public string URL { get; set; } = null!;
|
|
public int GRUPPO { get; set; } = 0;
|
|
public int NUMERO { get; set; } = 0;
|
|
public string NOME { get; set; } = null!;
|
|
public string DESCRIZIONE { get; set; } = null!;
|
|
}
|
|
}
|