Files
HTCloud/HT.Cloud.Code/Model/KeyValue.cs

9 lines
171 B
C#
Raw Permalink Normal View History

2023-03-03 16:07:50 +08:00
namespace HT.Cloud.Code
{
public class KeyValue
{
public string Key { get; set; }
public string Value { get; set; }
public string Description { get; set; }
}
}