using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace OliviaAddInPro.Model { [Serializable] public class OliviaConfMV { public OliviaConfMV() { nombre = "default"; filtro_omitir = ""; campo_prioridad = "0"; } public string nombre { get; set; } public string filtro_omitir { get; set; } public string campo_prioridad { get; set; } } }