Files
2026-06-26 10:29:23 +02:00

11 lines
323 B
C#

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