using System; using System.Collections.Generic; namespace ScreenCapture { public interface IScreenCaptureService : IDisposable { IEnumerable GetGraphicsCards(); IEnumerable GetDisplays(GraphicsCard graphicsCard); IScreenCapture GetScreenCapture(Display display); } }