namespace TheXamlGuy.Media.Capture; public interface IMediaFrameSource { MediaFrameFormat CurrentFormat { get; } string DisplayName { get; } MediaFrameSourceInfo Info { get; } IReadOnlyList SupportedFormats { get; } void SetFormat(MediaFrameFormat format); }