mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			590 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			590 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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; }
 | |
|     }
 | |
| }
 |