jellyfin/Jellyfin.Api/Models/EnvironmentDtos/DefaultDirectoryBrowserInfoDto.cs

13 lines
267 B
C#
Raw Normal View History

2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.EnvironmentDtos;
/// <summary>
/// Default directory browser info.
/// </summary>
public class DefaultDirectoryBrowserInfoDto
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets the path.
/// </summary>
2023-01-31 12:18:10 +01:00
public string? Path { get; set; }
}