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

13 lines
256 B
C#

using System.Runtime.Serialization;
namespace YandexMusic.API.Models.Common
{
public enum YTrackSharingFlag
{
[EnumMember(Value = "VIDEO_ALLOWED")]
VideoAllowed,
[EnumMember(Value = "COVER_ONLY")]
CoverOnly
}
}