aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoDto.cs
blob: f936388980869623dd010e42d5cce21e9999abc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;

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