public GalleryDetailViewModel(EHGallery gallery, EHApi api) { Api = api; Gallery = gallery; Title = gallery.Title; Init(); }
public GalleryViewModel(EHApi api, string title, string link) { Api = api; Title = "EHentai"; ResetLink(title, link); Source = new LoadingCollection <IIncrementalSource <EHGallery>, EHGallery>(this); }
public GalleryViewModel(EHApi api, EHGalleryTag tag) { Api = api; Title = "EHentai"; ResetTag(tag); Source = new LoadingCollection <IIncrementalSource <EHGallery>, EHGallery>(this); }
public EHReadingImage(IEHGalleryImage it, EHApi api, int index) { Data = it; _api = api; Index = index; }
public EHReadingViewModel(EHApi api, string url, IEHGalleryImage image = null) { _api = api; _url = url; Init(image); }
public GalleryDetailViewModel(string gallery, EHApi api) { Api = api; Init(gallery); }