Files
DP44/Common/DTS.Common.DAS.Concepts/IDataCollectionEnabled.cs
2026-04-17 14:55:32 -04:00

26 lines
615 B
C#

/*
* IDataCollectionEnabled.cs
*
* Copyright © 2010
* Diversified Technical Systems, Inc.
* All Rights Reserved.
*/
namespace DTS.DAS.Concepts
{ ///
/// <summary>
/// Representation of the ability to perform a basic data collection.
/// </summary>
///
public interface IDataCollectionEnabled
: IArmable,
ITriggerable,
IDownloadEnabled
{ //
// Additional properties required for rudimentary data collection.
//
double[] AvailableSampleRates { get; }
double SampleRate { get; set; }
}
}