8 lines
161 B
C#
8 lines
161 B
C#
namespace YandexMusic.API.Models.Radio.Restriction;
|
|
|
|
public class YRestrictionValue<T>
|
|
{
|
|
public string Name { get; set; }
|
|
public T Value { get; set; }
|
|
}
|