namespace Jellyfin.Api.Models.EnvironmentDtos
{
///
/// Validate path object.
///
public class ValidatePathDto
{
///
/// Gets or sets a value indicating whether validate if path is writable.
///
public bool ValidateWritable { get; set; }
///
/// Gets or sets the path.
///
public string Path { get; set; }
///
/// Gets or sets is path file.
///
public bool? IsFile { get; set; }
}
}