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

19 lines
414 B
C#
Raw Normal View History

2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.LibraryDtos;
/// <summary>
/// The media update info path.
/// </summary>
public class MediaUpdateInfoPathDto
2021-03-12 06:45:58 +01:00
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets media path.
2021-03-12 06:45:58 +01:00
/// </summary>
2023-01-31 12:18:10 +01:00
public string? Path { get; set; }
2021-03-12 06:45:58 +01:00
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets media update type.
/// Created, Modified, Deleted.
/// </summary>
public string? UpdateType { get; set; }
2021-03-12 06:45:58 +01:00
}