Добавлен вывод AuthStorage. Спрятаны внутренние api запросы
All checks were successful
Release / pack-and-publish (release) Successful in 32s
All checks were successful
Release / pack-and-publish (release) Successful in 32s
This commit is contained in:
@@ -5,7 +5,7 @@ using YandexMusic.API.Models.Library;
|
||||
|
||||
namespace YandexMusic.API.Requests.Library;
|
||||
|
||||
public class YGetLibraryRecentlyListenedBuilder : YMusicRequestBuilder<YRecentlyListenedContext?, (IEnumerable<YPlayContextType> contextTypes, int trackCount, int contextCount)>
|
||||
internal class YGetLibraryRecentlyListenedBuilder : YMusicRequestBuilder<YRecentlyListenedContext?, (IEnumerable<YPlayContextType> contextTypes, int trackCount, int contextCount)>
|
||||
{
|
||||
public YGetLibraryRecentlyListenedBuilder(YandexMusicApi api) : base(api) { }
|
||||
protected override string Method => WebRequestMethods.Http.Get;
|
||||
|
||||
@@ -3,7 +3,7 @@ using YandexMusic.API.Models.Library;
|
||||
|
||||
namespace YandexMusic.API.Requests.Library;
|
||||
|
||||
public class YGetLibrarySectionBuilder<T> : YMusicRequestBuilder<T?, (YLibrarySection section, YLibrarySectionType type)>
|
||||
internal class YGetLibrarySectionBuilder<T> : YMusicRequestBuilder<T?, (YLibrarySection section, YLibrarySectionType type)>
|
||||
{
|
||||
public YGetLibrarySectionBuilder(YandexMusicApi api) : base(api) { }
|
||||
protected override string Method => WebRequestMethods.Http.Get;
|
||||
|
||||
@@ -3,7 +3,7 @@ using YandexMusic.API.Models.Library;
|
||||
|
||||
namespace YandexMusic.API.Requests.Library;
|
||||
|
||||
public class YLibraryAddBuilder<T> : YMusicRequestBuilder<T?, (string id, YLibrarySection section, YLibrarySectionType type)>
|
||||
internal class YLibraryAddBuilder<T> : YMusicRequestBuilder<T?, (string id, YLibrarySection section, YLibrarySectionType type)>
|
||||
{
|
||||
public YLibraryAddBuilder(YandexMusicApi api) : base(api) { }
|
||||
protected override string Method => WebRequestMethods.Http.Post;
|
||||
|
||||
@@ -3,7 +3,7 @@ using YandexMusic.API.Models.Library;
|
||||
|
||||
namespace YandexMusic.API.Requests.Library;
|
||||
|
||||
public class YLibraryRemoveBuilder<T> : YMusicRequestBuilder<T?, (string id, YLibrarySection section, YLibrarySectionType type)>
|
||||
internal class YLibraryRemoveBuilder<T> : YMusicRequestBuilder<T?, (string id, YLibrarySection section, YLibrarySectionType type)>
|
||||
{
|
||||
public YLibraryRemoveBuilder(YandexMusicApi api) : base(api) { }
|
||||
protected override string Method => WebRequestMethods.Http.Post;
|
||||
|
||||
Reference in New Issue
Block a user