using DownKyi.ViewModels.PageViewModels; using System.Collections.Generic; namespace DownKyi.Services { public interface IInfoService { VideoInfoView GetVideoView(); List GetVideoSections(bool noUgc); List GetVideoPages(); void GetVideoStream(VideoPage page); } }