Files
YandexMusic/YandexMusic.API/Models/Common/YTrackSharingFlag.cs
2026-04-10 15:05:32 +03:00

12 lines
226 B
C#

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