45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.SqlTypes;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("Vocabolario")]
|
|
public partial class VocabolarioModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Lemma { get; set; } = "";
|
|
public string Lingua { get; set; } = "";
|
|
public string Traduzione { get; set; } = "";
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (!(obj is VocabolarioModel item))
|
|
return false;
|
|
|
|
if (Lemma != item.Lemma)
|
|
return false;
|
|
if (Lingua != item.Lingua)
|
|
return false;
|
|
if (Traduzione != item.Traduzione)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |