Files

10 lines
245 B
C#
Raw Permalink Normal View History

2026-05-27 00:05:32 +08:00
using System;
public interface IVideoRecorder
{
bool IsRecording { get; }
Action OnStartedRecordingVideo { get; set; }
Action<string> OnStoppedRecordingVideoAction { get; set; }
void StartRecording();
void StopRecording();
}