aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoDto.cs
blob: b34e0bba5daa1d99b07e02fb6cd1c5e699fbc660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>();
}