diff options
| author | crobibero <cody@robibe.ro> | 2021-03-11 22:45:58 -0700 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2021-03-11 22:45:58 -0700 |
| commit | eef15dc7ac23f026f11334e2a262a572df126e48 (patch) | |
| tree | 3618ea5b8aa875538d2b1a0befba3079212af0be /Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoPathDto.cs | |
| parent | d7f0aaaec10aa642d1d73c87771c6089c19d0ab6 (diff) | |
Fix third part integration
Diffstat (limited to 'Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoPathDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoPathDto.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoPathDto.cs b/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoPathDto.cs new file mode 100644 index 000000000..852315b92 --- /dev/null +++ b/Jellyfin.Api/Models/LibraryDtos/MediaUpdateInfoPathDto.cs @@ -0,0 +1,19 @@ +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; } + } +} |
