15 lines
261 B
C#
15 lines
261 B
C#
namespace YandexMusic.API;
|
|
|
|
/// <summary>
|
|
/// Родительский класс для ветки API
|
|
/// </summary>
|
|
public class YCommonAPI
|
|
{
|
|
protected YandexMusicApi api;
|
|
|
|
public YCommonAPI(YandexMusicApi yandex)
|
|
{
|
|
api = yandex;
|
|
}
|
|
}
|