19 lines
616 B
C#
19 lines
616 B
C#
using Manager.YouTube.Models.Playlist;
|
|
|
|
namespace Manager.YouTube.Models;
|
|
|
|
public class YouTubePlaylist
|
|
{
|
|
public required string Id { get; set; }
|
|
public required string Title { get; set; }
|
|
public required string Description { get; set; }
|
|
public required string Owner { get; set; }
|
|
public required string OwnerId { get; set; }
|
|
public bool NoIndex { get; set; }
|
|
public bool Unlisted { get; set; }
|
|
public bool CanReorder { get; set; }
|
|
public bool IsEditable { get; set; }
|
|
public List<PlaylistVideo> Videos { get; set; } = [];
|
|
|
|
public string? ContinuationToken { get; set; }
|
|
} |