jellyfin/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs

23 lines
516 B
C#
Raw Normal View History

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