Files
SHERPA/SHERPA.Data/DbModels/LingueModel.cs
T
2023-01-23 19:30:31 +01:00

24 lines
634 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("Lingue")]
public partial class LingueModel
{
public LingueModel()
{
VocabolarioNav = new HashSet<VocabolarioModel>();
}
public string Lingua { get; set; } = null!;
public string DescrizioneLingua { get; set; } = null!;
public virtual ICollection<VocabolarioModel> VocabolarioNav { get; set; }
}
}