Files
mapo-core/MP.AppAuth/Models/VocabolarioModel.cs
T
2024-07-19 09:30:59 +02:00

21 lines
507 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.AppAuth.Models
{
[Table("Vocabolario")]
public partial class VocabolarioModel
{
#region Public Properties
public string Lemma { get; set; } = "";
public string Lingua { get; set; } = "";
public string Traduzione { get; set; } = "";
#endregion Public Properties
}
}