Files
2025-03-05 19:42:01 +08:00

9 lines
173 B
C#

namespace WaterCloud.Code
{
public class KeyValue
{
public string Key { get; set; }
public string Value { get; set; }
public string Description { get; set; }
}
}