public Task <List <ShareModel> > GetEntryListAsync(string entryId) => faultHandler.Wrap(http.GetFromJsonAsync <List <ShareModel> >($"entries/{entryId}/sharing"));
public Task <TimelineListResponse> GetTimelineListAsync(int?offset) => faultHandler.Wrap(http.GetFromJsonAsync <TimelineListResponse>($"timeline/list{(offset != null && offset > 0 ? $"?offset={offset}" : null)}"));