43 lines
764 B
C#
43 lines
764 B
C#
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;
|
|
/// <summary>
|
|
/// Key
|
|
/// </summary>
|
|
public string Key
|
|
{
|
|
get
|
|
{
|
|
return _Key;
|
|
}
|
|
set
|
|
{
|
|
_Key = value;
|
|
}
|
|
}
|
|
private string _Value;
|
|
/// <summary>
|
|
/// Key
|
|
/// </summary>
|
|
public string Value
|
|
{
|
|
get
|
|
{
|
|
return _Value;
|
|
}
|
|
set
|
|
{
|
|
_Value = value;
|
|
}
|
|
}
|
|
}
|
|
}
|