Files
YandexMusic/YandexMusic.API/Models/Radio/Restriction/YRestrictionDiscreteScale.cs
2026-04-10 12:12:33 +03:00

9 lines
237 B
C#

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