using System;
namespace Xylem.Common.Logic.ProductionOrderCore.Vako
{
///
/// VAKO key collection
///
public class VakoKeyValue
{
///
/// Key as string
///
public String Key { get; set; }
///
/// Name of key
///
public String Name { get; set; }
///
/// Comment for this key
///
public String Desc { get; set; }
///
/// Character decoding
///
public String Charcode { get; set; }
///
/// Value of key
///
public String Value { get; set; }
}
}