add controller for video

This commit is contained in:
Oleksandr Bezdieniezhnykh
2024-07-22 16:01:28 +03:00
parent bfbfdf6658
commit 6f78b88007
7 changed files with 80 additions and 35 deletions
+2 -1
View File
@@ -1,11 +1,12 @@
using Azaion.Repository.DTO;
using Azaion.Repository.Entities;
namespace Azaion.Video;
public interface IVideoManager
{
List<VideoDto> GetVideos();
void OpenVideo(Guid mediaId);
Media Get(Guid mediaId);
void CreateAnnotation(Guid mediaId, DateTime time)
{