namespace adas_core.Domain.Models.DTO; /// /// Represents a data transfer object for conveying asset information between application layers or services. /// public class AssetDto { public string? Name { get; set; } public string? Extension { get; set; } public string? Path { get; set; } }