using System;
using System.Collections.Generic;
namespace Jellyfin.Api.Models.LibraryDtos;
/// 
/// Media Update Info Dto.
/// 
public class MediaUpdateInfoDto
{
    /// 
    /// Gets or sets the list of updates.
    /// 
    public IReadOnlyList Updates { get; set; } = Array.Empty();
}