ValidatePathDto.cs 590 B

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