aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoPathDto.cs
blob: 5bbaea669fb29e15123791dc4433226c3f5cbda8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Jellyfin.Api.Models.LibraryDtos;

/// <summary>
/// The media update info path.
/// </summary>
public class MediaUpdateInfoPathDto
{
    /// <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; }
}