16 lines
442 B
C#
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; }
|
|
}
|
|
} |