Files
2023-01-23 19:30:31 +01:00

24 lines
603 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace SHERPA.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("Gruppi")]
public partial class GruppiModel
{
public GruppiModel()
{
ClientiNav = new HashSet<CustomerModel>();
}
public string IdxGruppo { get; set; } = null!;
public string? Descr { get; set; }
public virtual ICollection<CustomerModel> ClientiNav { get; set; }
}
}