using Iceshrimp.Frontend.Core.Miscellaneous; using Iceshrimp.Frontend.Core.Services; using Iceshrimp.Shared.Schemas.Web; namespace Iceshrimp.Frontend.Core.ControllerModels; internal class MiscControllerModel(ApiClient api) { public Task> GetMutedThreadsAsync(PaginationQuery pq) => api.CallAsync>(HttpMethod.Get, "/misc/muted_threads", pq); }