using System; using System.Threading.Tasks; using BililiveRecorder.Core.Api.Model; namespace BililiveRecorder.Core.Api { public interface IApiClient : IDisposable { Task> GetRoomInfoAsync(int roomid); Task> GetUserInfoAsync(int roomid); Task> GetStreamUrlAsync(int roomid, int qn); } }