using Newtonsoft.Json;
namespace Jellyfin.Plugin.TubeArchivistMetadata.TubeArchivist
{
///
/// A class representing TubeArchivist API custom playlist creation request.
///
public class CustomPlaylistCreation
{
///
/// Initializes a new instance of the class.
///
/// The name of the new custom playlist to create.
public CustomPlaylistCreation(string playlistName)
{
this.PlaylistName = playlistName;
}
///
/// Gets or sets the name of the new custom playlist to create.
///
[JsonProperty(PropertyName = "playlist_name")]
public string PlaylistName { get; set; }
}
}