using NTwain.Data; using NTwain.Triplets; using System; using System.Collections.Generic; using System.Linq; using System.Text; 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; } } }