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