Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube.Core/Models/Subscription.cs
T

16 lines
442 B
C#

using Google.Apis.YouTube.v3.Data;
namespace FoxTube.Models
{
public class Subscription
{
public string Title { get; set; }
public string Description { get; set; }
public string ChannelId { get; set; }
public string SubscriptionId { get; set; }
public ThumbnailDetails Avatar { get; set; }
public ImageSettings Banner { get; set; }
public ulong? SubscribersCount { get; set; }
public ulong VideosCount { get; set; }
}
}