
* 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.
13 lines
271 B
C#
13 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; }
|
|
}
|