namespace API.DTOs.System; public class DirectoryDto { /// /// Name of the directory /// public string Name { get; set; } /// /// Full Directory Path /// public string FullPath { get; set; } }