15 lines
391 B
C#
15 lines
391 B
C#
namespace EgwCoreLib.Lux.Data.DbModel.Admin
|
|
{
|
|
[Table("admin_vocabolario")]
|
|
public partial class VocabolarioModel
|
|
{
|
|
|
|
public string Lingua { get; set; } = "ND";
|
|
public string Lemma { get; set; } = "";
|
|
public string Traduzione { get; set; } = "";
|
|
|
|
[ForeignKey("Lingua")]
|
|
public virtual LinguaModel LinguaNav { get; set; } = null!;
|
|
|
|
}
|
|
} |