24 lines
625 B
C#
24 lines
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LiMan.DbSync.DbModels
|
|
{
|
|
// <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; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |