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