21 lines
413 B
C#
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; }
|
|
}
|
|
}
|