aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/EnvironmentDtos/DefaultDirectoryBrowserInfoDto.cs
blob: c438e5a97017f1149e1380087d17afd66e06371a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Jellyfin.Api.Models.EnvironmentDtos;

/// <summary>
/// Default directory browser info.
/// </summary>
public class DefaultDirectoryBrowserInfoDto
{
    /// <summary>
    /// Gets or sets the path.
    /// </summary>
    public string? Path { get; set; }
}