using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Video.DirectCapture;
namespace Tango.MachineStudio.Common.Video
{
///
/// Represents a video capturing device provider.
///
public interface IVideoCaptureProvider
{
///
/// Gets the available capture devices.
///
ObservableCollection AvailableCaptureDevices { get; }
}
}