11 lines
323 B
C#
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; }
|
|
} |