namespace Jellyfin.Plugin.TubeArchivistMetadata.TubeArchivist
{
///
/// Class representing the base common structure of TubeArchivist API responses.
///
/// The contained data type.
public class ResponseContainer
{
///
/// Gets or sets the contained data object.
///
public T? Data { get; set; }
///
/// Gets or sets the pagination info object.
///
public PaginationInfo? Paginate { get; set; }
}
}