Ejemplo n.º 1
0
 public LastfmClient(LastAuth auth, HttpClient httpClient = null, ScrobblerBase scrobbler = null)
     : base(httpClient)
 {
     _lastAuth = auth;
     _scrobbler = scrobbler;
 }
Ejemplo n.º 2
0
 public LastfmClient(string apiKey, string apiSecret, HttpClient httpClient = null, ScrobblerBase scrobbler = null)
     : base(httpClient)
 {
     _lastAuth = new LastAuth(apiKey, apiSecret, httpClient);
     _scrobbler = scrobbler;
 }