using NTwain.Triplets; namespace NTwain { /// /// Interface for providing TWAIN triplet operations. /// public interface ITwainOperation { /// /// Gets the triplet operations defined for audio data group. /// DGAudio DGAudio { get; } /// /// Gets the triplet operations defined for control data group. /// DGControl DGControl { get; } /// /// Gets the triplet operations defined for image data group. /// DGImage DGImage { get; } } }