using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Estsh.Core.Model.Result { [Serializable] public class KeyValueResult { public string value { get;set; } public string key { get; set; } public string type { get; set; } public string desc { get; set; } } }