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
{
///
/// Vocabolario termini
///
[Table("Vocabulary")]
public class VocabularyModel
{
///
/// Lingua del lemma
///
[MaxLength(5)]
public string Lingua { get; set; } = "";
///
/// Lemma del termine
///
[MaxLength(50)]
public string Lemma { get; set; } = "";
///
/// Traduzione del lemma
///
[MaxLength(500)]
public string Traduzione { get; set; } = "";
}
}