You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
590 B
24 lines
590 B
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; }
|
|
}
|
|
}
|