22 lines
623 B
C#
22 lines
623 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace GPW.CORE.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("AnagGruppi")]
|
|
public partial class AnagGruppiModel
|
|
{
|
|
public string Gruppo { get; set; } = null!;
|
|
public string? DescrGruppo { get; set; }
|
|
public string? CodExt { get; set; }
|
|
/// <summary>
|
|
/// determina se sia abilitato x export dati
|
|
/// </summary>
|
|
public bool? ExportEnab { get; set; }
|
|
}
|
|
}
|