mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* Started on the directory picker refactor. * Coded some basic working version. Needs styling and variable cleanup * code cleanup * Implemented the ability to expose swagger on non-development servers. * Implemented the ability to expose swagger on non-development servers.
14 lines
271 B
C#
14 lines
271 B
C#
namespace API.DTOs.System;
|
|
|
|
public class DirectoryDto
|
|
{
|
|
/// <summary>
|
|
/// Name of the directory
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// Full Directory Path
|
|
/// </summary>
|
|
public string FullPath { get; set; }
|
|
}
|