16 lines
343 B
C#
16 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class AnagraficaGruppi
|
|
{
|
|
public string CodGruppo { get; set; }
|
|
public string TipoGruppo { get; set; }
|
|
public string DescrGruppo { get; set; }
|
|
public bool SelEnabled { get; set; }
|
|
}
|
|
}
|