ValidatePathDto.cs 516 B

12345678910111213141516171819202122
  1. namespace Jellyfin.Api.Models.EnvironmentDtos;
  2. /// <summary>
  3. /// Validate path object.
  4. /// </summary>
  5. public class ValidatePathDto
  6. {
  7. /// <summary>
  8. /// Gets or sets a value indicating whether validate if path is writable.
  9. /// </summary>
  10. public bool ValidateWritable { get; set; }
  11. /// <summary>
  12. /// Gets or sets the path.
  13. /// </summary>
  14. public string? Path { get; set; }
  15. /// <summary>
  16. /// Gets or sets is path file.
  17. /// </summary>
  18. public bool? IsFile { get; set; }
  19. }