12 lines
357 B
C#
12 lines
357 B
C#
namespace adas_core.Domain.Models.DTO;
|
|
|
|
/// <summary>
|
|
/// Represents a data transfer object for conveying asset information between application layers or services.
|
|
/// </summary>
|
|
/// <!-- aidoc:v1 sig=d1871a9 -->
|
|
public class AssetDto
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Extension { get; set; }
|
|
public string? Path { get; set; }
|
|
} |