20 lines
575 B
Plaintext
20 lines
575 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTS.Common.Interface.DASFactory
|
|
{
|
|
/// <summary>
|
|
/// describes the argument to configuration events
|
|
/// 17872 Use DASConfig XMLs on disk when performing an emergency download with DAS that have blank filestore(s)
|
|
/// </summary>
|
|
public interface IDASConfigurationArg
|
|
{
|
|
IDASCommunication DAS { get; }
|
|
bool BlankConfigurationRead { get; }
|
|
bool ConfigurationFailedValidation { get; }
|
|
}
|
|
}
|