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;
//
// This is here so CodeMaid doesn't reorganize this document
//
namespace WebDoorCreator.Data.DbModels
{
///
/// Lingue conosciute per il programma
///
[Table("Languages")]
public class LanguageModel
{
///
/// codice lingua
///
[Key, MaxLength(5)]
public string CodLingua { get; set; } = "";
///
/// Descrizione della lingua (Lingua per esteso)
///
[MaxLength(50)]
public string DescrizioneLingua { get; set; } = "";
}
}