Files
2023-06-06 17:12:26 +02:00

44 lines
1.1 KiB
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>
/// Vocabolario termini
/// </summary>
[Table("VocabularyTemp")]
public class VocabularyTempModel
{
/// <summary>
/// Lingua del lemma
/// </summary>
[MaxLength(5)]
public string Lingua { get; set; } = "";
/// <summary>
/// Lemma del termine
/// </summary>
[MaxLength(50)]
public string Lemma { get; set; } = "";
/// <summary>
/// Traduzione del lemma
/// </summary>
[MaxLength(500)]
public string Traduzione { get; set; } = "";
/// <summary>
/// Indica se è da salvare su db o no
/// </summary>
public bool IsConfSave { get; set; } = false;
}
}