Files
mapo-core/MP.AppAuth/DatabaseModels/Lingue.cs
T
2021-09-17 19:42:03 +02:00

21 lines
413 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth
{
public partial class Lingue
{
public Lingue()
{
Vocabolarios = new HashSet<Vocabolario>();
}
public string Lingua { get; set; }
public string DescrizioneLingua { get; set; }
public virtual ICollection<Vocabolario> Vocabolarios { get; set; }
}
}