Resume stream

This commit is contained in:
2023-08-22 20:04:25 +01:00
parent 5a2bd21cec
commit 092804f023
5 changed files with 41 additions and 18 deletions

View File

@ -80,4 +80,10 @@ public interface IStreamManager
/// </summary>
/// <returns></returns>
Task<List<UserStreamRecording>> GetRecordings();
/// <summary>
/// Return the last added recording segment
/// </summary>
/// <returns></returns>
Task<UserStreamRecording?> GetLatestRecordingSegment();
}