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("VocabularyTemp")] public class VocabularyTempModel { /// /// 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; } = ""; /// /// Indica se è da salvare su db o no /// public bool IsConfSave { get; set; } = false; } }