using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.PluginServiceInterface.Model { public class KeyAndValue { /// /// /// public string S_Key { get; set; } /// /// /// public string S_Value { get; set; } public bool IsCheck { get; set; } public int OrderIndex { get; set; } } }