kCura.EDDS.WebAPI.BulkImportManagerBase.ImageLoadInfo
namespace kCura.EDDS.WebAPI.BulkImportManagerBase
{
public class ImageLoadInfo
{
public bool DisableUserSecurityCheck { get; set; }
public string RunID { get; set; }
public OverwriteType Overlay { get; set; }
public string Repository { get; set; }
public bool UseBulkDataImport { get; set; }
public bool UploadFullText { get; set; }
public string BulkFileName { get; set; }
public string DataGridFileName { get; set; }
public int KeyFieldArtifactID { get; set; }
public int DestinationFolderArtifactID { get; set; }
public ImportAuditLevel AuditLevel { get; set; }
public int OverlayArtifactID { get; set; }
public ExecutionSource ExecutionSource { get; set; }
public bool Billable { get; set; }
public ImageLoadInfo();
}
}