using System; public interface IVideoRecorder { bool IsRecording { get; } Action OnStartedRecordingVideo { get; set; } Action OnStoppedRecordingVideoAction { get; set; } void StartRecording(); void StopRecording(); }