24 lines
644 B
C#
24 lines
644 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; }
|
|
}
|
|
}
|