using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace com.itac.mes.imsapi
{
///
/// Attribut für das automatische Mapping von Werten in Strukturen nach String-Arrays und umgekehrt
///
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class ImsApiKey : Attribute
{
///
/// String field.
///
string key;
///
/// Attribute constructor.
///
public ImsApiKey()
{
}
///
/// Get and set.
///
public string Key
{
get { return this.key; }
set { this.key = value; }
}
}
}