aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoDto.cs
blob: 991dbfc50221491327fda5bd72704eaf51f0375b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace Jellyfin.Api.Models.LibraryDtos
{
    /// <summary>
    /// Media Update Info Dto.
    /// </summary>
    public class MediaUpdateInfoDto
    {
        /// <summary>
        /// Gets or sets media path.
        /// </summary>
        public string? Path { get; set; }

        /// <summary>
        /// Gets or sets media update type.
        /// Created, Modified, Deleted.
        /// </summary>
        public string? UpdateType { get; set; }
    }
}