Kavita/API/DTOs/System/DirectoryDto.cs
Joseph Milazzo 9c851b0f0e
Directory Picker Rework (#1325)
* 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.
2022-06-16 10:08:09 -07:00

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