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