2023-01-31 11:18:10 +00:00
|
|
|
namespace Jellyfin.Api.Models.EnvironmentDtos;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Validate path object.
|
|
|
|
/// </summary>
|
|
|
|
public class ValidatePathDto
|
2020-04-25 00:20:36 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
/// Gets or sets a value indicating whether validate if path is writable.
|
2020-04-25 00:20:36 +00:00
|
|
|
/// </summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
public bool ValidateWritable { get; set; }
|
2020-04-25 00:20:36 +00:00
|
|
|
|
2023-01-31 11:18:10 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path.
|
|
|
|
/// </summary>
|
|
|
|
public string? Path { get; set; }
|
2020-04-25 00:20:36 +00:00
|
|
|
|
2023-01-31 11:18:10 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets is path file.
|
|
|
|
/// </summary>
|
|
|
|
public bool? IsFile { get; set; }
|
2020-04-25 00:20:36 +00:00
|
|
|
}
|