491365e8df
- aggiunto modello - aggiunta metori recupero DB/REDIS - aggiunto metodo traduzione lemmi (pag parametri)
22 lines
546 B
C#
22 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
[Table("Vocabolario")]
|
|
public partial class VocabolarioModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Lingua { get; set; }
|
|
public string Lemma { get; set; }
|
|
public string Traduzione { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |