40 lines
988 B
C#
40 lines
988 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>
|
|
/// Vocabolario termini
|
|
/// </summary>
|
|
[Table("Vocabulary")]
|
|
public class VocabularyModel
|
|
{
|
|
/// <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; } = "";
|
|
}
|
|
}
|