using System; using System.Collections.Generic; using System.Threading.Tasks; using OpenCvSharp; namespace Squirrowse.Client.Service { public interface ICameraService { Task GetFrame(); IAsyncEnumerable GetFramesAsyncEnumerator(); } }