10 lines
245 B
C#
10 lines
245 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
public interface IVideoRecorder
|
||
|
|
{
|
||
|
|
bool IsRecording { get; }
|
||
|
|
Action OnStartedRecordingVideo { get; set; }
|
||
|
|
Action<string> OnStoppedRecordingVideoAction { get; set; }
|
||
|
|
void StartRecording();
|
||
|
|
void StopRecording();
|
||
|
|
}
|