16 lines
318 B
C#
16 lines
318 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WaterCloud.Code
|
|
{
|
|
public class KeyValue
|
|
{
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
}
|