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