10 lines
264 B
C#
10 lines
264 B
C#
namespace Manager.YouTube.Models.Innertube;
|
|
|
|
public class ChannelFetch
|
|
{
|
|
public bool NoIndex { get; set; }
|
|
public bool Unlisted { get; set; }
|
|
public bool FamilyFriendly { get; set; }
|
|
public List<string> AvailableCountries { get; set; } = [];
|
|
|
|
} |