diff options
| author | David <daullmer@gmail.com> | 2020-06-14 12:49:43 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-06-14 12:49:43 +0200 |
| commit | 8a8bf4b6866e804c60baace62dbda9b690c5ece7 (patch) | |
| tree | 047d47638ba62138e6fe30a2eb22c3231b244e72 /Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs | |
| parent | fff3c789b98aad08f8ea66da275ff82c71dd8f2b (diff) | |
| parent | 0011e8df47380936742302ef40639a4626a780ed (diff) | |
Merge remote-tracking branch 'upstream/api-migration' into api-sessionservice
Diffstat (limited to 'Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs b/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs index b05e0cdf5..3706a11e3 100644 --- a/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs +++ b/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs @@ -1,3 +1,5 @@ +#nullable enable + namespace Jellyfin.Api.Models.ConfigurationDtos { /// <summary> @@ -8,11 +10,11 @@ namespace Jellyfin.Api.Models.ConfigurationDtos /// <summary> /// Gets or sets media encoder path. /// </summary> - public string Path { get; set; } + public string Path { get; set; } = null!; /// <summary> /// Gets or sets media encoder path type. /// </summary> - public string PathType { get; set; } + public string PathType { get; set; } = null!; } } |
