kCura.WinEDDS.Exporters.ImageExportInfo
namespace kCura.WinEDDS.Exporters
{
public class ImageExportInfo
{
public string FileName { get; set; }
public string FileGuid { get; set; }
public int ArtifactID { get; set; }
public string BatesNumber { get; set; }
public string TempLocation { get; set; }
public string SourceLocation { get; set; }
public int? PageOffset { get; set; }
public bool HasBeenCounted { get; set; }
public bool SuccessfulRollup { get; set; }
public ImageExportInfo();
}
}