Files
jellyfin-jellyfin-1/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoDto.cs

16 lines
376 B
C#
Raw Normal View History

using System;
2021-03-11 22:45:58 -07:00
using System.Collections.Generic;
2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.LibraryDtos;
/// <summary>
/// Media Update Info Dto.
/// </summary>
public class MediaUpdateInfoDto
2020-06-19 13:10:10 -06:00
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets the list of updates.
2020-06-19 13:10:10 -06:00
/// </summary>
2023-01-31 12:18:10 +01:00
public IReadOnlyList<MediaUpdateInfoPathDto> Updates { get; set; } = Array.Empty<MediaUpdateInfoPathDto>();
2020-06-19 13:10:10 -06:00
}