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