21 lines
518 B
C#
21 lines
518 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[Table("Lingue")]
|
|
public partial class LingueModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key]
|
|
public string Lingua { get; set; } = "";
|
|
public string DescrizioneLingua { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |