using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SWS.Model
{
public class KeyValueModel
{
private string _Key;
///
/// Key
///
public string Key
{
get
{
return _Key;
}
set
{
_Key = value;
}
}
private string _Value;
///
/// Key
///
public string Value
{
get
{
return _Value;
}
set
{
_Value = value;
}
}
}
}