init
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using DTS.Common.Interface.DASFactory;
|
||||
|
||||
namespace DTS.DASLib.Service
|
||||
{
|
||||
/// <summary>
|
||||
/// this class handles the data passed to consumers during a DASConfigurationEvent
|
||||
/// 17872 Use DASConfig XMLs on disk when performing an emergency download with DAS that have blank filestore(s)
|
||||
/// </summary>
|
||||
public class DASConfigurationArg : IDASConfigurationArg
|
||||
{
|
||||
public IDASCommunication DAS { get; private set; }
|
||||
public bool BlankConfigurationRead { get; private set; }
|
||||
public bool ConfigurationFailedValidation { get; private set; }
|
||||
|
||||
public DASConfigurationArg(IDASCommunication das, bool blankRead, bool failedValidation)
|
||||
{
|
||||
DAS = das;
|
||||
BlankConfigurationRead = blankRead;
|
||||
ConfigurationFailedValidation = failedValidation;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user