34 lines
887 B
C#
34 lines
887 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static WebDoorCreator.Core.Enum;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace WebDoorCreator.Data.DbModels
|
|
{
|
|
/// <summary>
|
|
/// Lingue conosciute per il programma
|
|
/// </summary>
|
|
[Table("Languages")]
|
|
public class LanguageModel
|
|
{
|
|
/// <summary>
|
|
/// codice lingua
|
|
/// </summary>
|
|
[Key, MaxLength(5)]
|
|
public string CodLingua { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Descrizione della lingua (Lingua per esteso)
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string DescrizioneLingua { get; set; } = "";
|
|
}
|
|
}
|