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