aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs
blob: c54205bfaf6e5b3c74c2db5dd235d06a3ec87e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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; }
}