Added Subscriptions page and updated subscriptions management
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user