blob: 418c11c2d01729c387459f80d5086db32584f568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
namespace Jellyfin.Api.Models.EnvironmentDtos
{
/// <summary>
/// Validate path object.
/// </summary>
public class ValidatePathDto
{
/// <summary>
/// Gets or sets a value indicating whether validate if path is writable.
/// </summary>
public bool ValidateWritable { 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; }
}
}
|