mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
15 lines
312 B
C#
15 lines
312 B
C#
using System.Collections.Generic;
|
|
using DownKyi.ViewModels.PageViewModels;
|
|
|
|
namespace DownKyi.Services;
|
|
|
|
public interface IInfoService
|
|
{
|
|
VideoInfoView? GetVideoView();
|
|
|
|
List<VideoSection>? GetVideoSections(bool noUgc);
|
|
|
|
List<VideoPage>? GetVideoPages();
|
|
|
|
void GetVideoStream(VideoPage page);
|
|
} |