namespace WalkingTec.Mvvm.Core { /// /// KV /// public class KV { /// /// Key /// public string Key { get; set; } /// /// Value /// public string Value { get; set; } } }