9 lines
171 B
C#
9 lines
171 B
C#
namespace HT.Cloud.Code
|
|
{
|
|
public class KeyValue
|
|
{
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
} |