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