Files
YandexMusic/YandexMusic.API/Models/Radio/Restriction/YRestrictionDiscreteScale.cs
2026-04-10 15:05:32 +03:00

8 lines
215 B
C#

namespace YandexMusic.API.Models.Radio.Restriction;
public class YRestrictionDiscreteScale : YRestriction
{
public YRestrictionValue<int> Min { get; set; }
public YRestrictionValue<int> Max { get; set; }
}