Files
YandexMusic/YandexMusic.API/Models/Playlist/YPlaylistMadeFor.cs
2026-04-10 12:12:33 +03:00

28 lines
746 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using YandexMusic.API.Models.Common;
namespace YandexMusic.API.Models.Playlist
{
public class YPlaylistMadeFor
{
public class YMadeForCaseForms
{
#region Свойства
public string Accusative { get; set; }
public string Dative { get; set; }
public string Genitive { get; set; }
public string Instrumental { get; set; }
public string Nominative { get; set; }
public string Prepositional { get; set; }
#endregion Свойства
}
#region Свойства
public YMadeForCaseForms CaseForms { get; set; }
public YOwner UserInfo { get; set; }
#endregion Свойства
}
}