14 lines
509 B
C#
14 lines
509 B
C#
namespace adas_core.Domain.Models.DTO.Display;
|
|
|
|
/// <summary>
|
|
/// Represents a data transfer object that encapsulates display configuration and location information.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This DTO is used to transfer display configuration settings along with their associated location data between application layers.
|
|
/// </remarks>
|
|
/// <!-- aidoc:v1 sig=fa37034 -->
|
|
public class DisplayConfigLocationDto
|
|
{
|
|
public string? DisplayName { get; set; }
|
|
public string? UnitName { get; set; }
|
|
} |