21 lines
484 B
C#
21 lines
484 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 Vocabolario
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Lemma { get; set; }
|
|
public string Lingua { get; set; }
|
|
public string Traduzione { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |