jellyfin/Jellyfin.Api/Models/EnvironmentDtos/DefaultDirectoryBrowserInfoDto.cs
2020-05-19 13:22:09 -06:00

13 lines
308 B
C#

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; }
}
}