ErrorFileKey
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Xml.Serialization;
namespace kCura.EDDS.WebAPI.BulkImportManagerBase
{
[Serializable]
[GeneratedCode("System.Xml", "4.6.1055.0")]
[DebuggerStepThrough]
[DesignerCategory("code")]
[XmlType(Namespace = "http://www.kCura.com/EDDS/BulkImportManager")]
public class ErrorFileKey
{
private string opticonKeyField;
private string logKeyField;
public string OpticonKey {
get {
return opticonKeyField;
}
set {
opticonKeyField = value;
}
}
public string LogKey {
get {
return logKeyField;
}
set {
logKeyField = value;
}
}
}
}