aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/PlaybackDtos/TranscodingJobDto.cs
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-10-13 00:04:09 +0200
committerGitHub <noreply@github.com>2021-10-13 00:04:09 +0200
commit09f33d3b8726fe5cd52c6fe62291ca9787093e83 (patch)
treef941adfd4f851d445779be640dfe5c9175524241 /Jellyfin.Api/Models/PlaybackDtos/TranscodingJobDto.cs
parent6ab412ed00f8274aa18d03692dbd03134bf91c46 (diff)
parent32f3d60a84a0e6e83ed0b00a1490e9fbd93a198d (diff)
Merge pull request #6558 from dmitrylyzo/ffmpeg-exitcode
Diffstat (limited to 'Jellyfin.Api/Models/PlaybackDtos/TranscodingJobDto.cs')
-rw-r--r--Jellyfin.Api/Models/PlaybackDtos/TranscodingJobDto.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/PlaybackDtos/TranscodingJobDto.cs b/Jellyfin.Api/Models/PlaybackDtos/TranscodingJobDto.cs
index 291e571dc..fed837b85 100644
--- a/Jellyfin.Api/Models/PlaybackDtos/TranscodingJobDto.cs
+++ b/Jellyfin.Api/Models/PlaybackDtos/TranscodingJobDto.cs
@@ -107,6 +107,11 @@ namespace Jellyfin.Api.Models.PlaybackDtos
public bool HasExited { get; set; }
/// <summary>
+ /// Gets or sets exit code.
+ /// </summary>
+ public int ExitCode { get; set; }
+
+ /// <summary>
/// Gets or sets a value indicating whether is user paused.
/// </summary>
public bool IsUserPaused { get; set; }