namespace BBWY.Client.Models
{
    public class KVModel : NotifyObject
    {
        public string Key { get; set; }

        public string Value { get; set; }
    }
}