mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-23 07:40:12 +08:00
17 lines
311 B
C#
17 lines
311 B
C#
using DownKyi.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Services
|
|
{
|
|
public interface IInfoService
|
|
{
|
|
VideoInfoView GetVideoView();
|
|
|
|
List<VideoSection> GetVideoSections();
|
|
|
|
List<VideoPage> GetVideoPages();
|
|
|
|
void GetVideoStream(VideoPage page);
|
|
}
|
|
}
|