using Iceshrimp.Frontend.Core.Miscellaneous; using Iceshrimp.Frontend.Core.Services; using Iceshrimp.Shared.Schemas.Web; namespace Iceshrimp.Frontend.Core.ControllerModels; internal class TimelineControllerModel(ApiClient api) { [LinkPagination(20, 80)] public Task> GetHomeTimeline(PaginationQuery pq) => api.Call>(HttpMethod.Get, "/timelines/home", pq); }