18 lines
166 B
C#
18 lines
166 B
C#
using System;
|
|
namespace com.itac.mes.tools
|
|
{
|
|
public class KeyValue
|
|
{
|
|
public string key
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string value
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|