jellyfin/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoDto.cs

17 lines
421 B
C#
Raw Normal View History

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