Files
downkyicore/DownKyi/Services/IInfoService.cs
2023-12-24 01:05:56 +08:00

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);
}