using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // 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 } }