Files
YandexMusic/YandexMusic.API/Models/Common/YTrackSharingFlag.cs
FrigaT 21a0c5abe6
All checks were successful
Release / pack-and-publish (release) Successful in 45s
обновление json parse
2026-04-13 13:55:23 +03:00

13 lines
289 B
C#

using System.Text.Json.Serialization;
namespace YandexMusic.API.Models.Common;
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum YTrackSharingFlag
{
[JsonStringEnumMemberName("VIDEO_ALLOWED")]
VideoAllowed,
[JsonStringEnumMemberName("COVER_ONLY")]
CoverOnly
}