ImageExportInfo
using System.Runtime.CompilerServices;
namespace kCura.WinEDDS.Exporters
{
public class ImageExportInfo
{
private string _fileName;
private string _fileGuid;
private int _artifactID;
private string _batesNumber;
private string _tempLocation;
private string _sourceLocation;
private int? _pageOffset;
private bool _hasBeenDownloaded;
[CompilerGenerated]
private bool _SuccessfulRollup;
public string FileName {
get {
return _fileName;
}
set {
_fileName = value;
}
}
public string FileGuid {
get {
return _fileGuid;
}
set {
_fileGuid = value;
}
}
public int ArtifactID {
get {
return _artifactID;
}
set {
_artifactID = value;
}
}
public string BatesNumber {
get {
return _batesNumber;
}
set {
_batesNumber = value;
}
}
public string TempLocation {
get {
return _tempLocation;
}
set {
_tempLocation = value;
}
}
public string SourceLocation {
get {
return _sourceLocation;
}
set {
_sourceLocation = value;
}
}
public int? PageOffset {
get {
return _pageOffset;
}
set {
_pageOffset = value;
}
}
public bool HasBeenCounted {
get {
return _hasBeenDownloaded;
}
set {
_hasBeenDownloaded = value;
}
}
public bool SuccessfulRollup { get; set; }
public ImageExportInfo()
{
_hasBeenDownloaded = false;
}
}
}