aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs')
-rw-r--r--Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs33
1 files changed, 16 insertions, 17 deletions
diff --git a/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs b/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs
index 418c11c2d..c54205bfa 100644
--- a/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs
+++ b/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs
@@ -1,23 +1,22 @@
-namespace Jellyfin.Api.Models.EnvironmentDtos
+namespace Jellyfin.Api.Models.EnvironmentDtos;
+
+/// <summary>
+/// Validate path object.
+/// </summary>
+public class ValidatePathDto
{
/// <summary>
- /// Validate path object.
+ /// Gets or sets a value indicating whether validate if path is writable.
/// </summary>
- public class ValidatePathDto
- {
- /// <summary>
- /// Gets or sets a value indicating whether validate if path is writable.
- /// </summary>
- public bool ValidateWritable { get; set; }
+ public bool ValidateWritable { get; set; }
- /// <summary>
- /// Gets or sets the path.
- /// </summary>
- public string? Path { get; set; }
+ /// <summary>
+ /// Gets or sets the path.
+ /// </summary>
+ public string? Path { get; set; }
- /// <summary>
- /// Gets or sets is path file.
- /// </summary>
- public bool? IsFile { get; set; }
- }
+ /// <summary>
+ /// Gets or sets is path file.
+ /// </summary>
+ public bool? IsFile { get; set; }
}