43 lines
771 B
C#
Raw Permalink Normal View History

2025-09-02 11:21:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CAD.Extend.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;
}
}
}
}