13 lines
475 B
C#
13 lines
475 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>
|
|
public class DisplayConfigLocationDto
|
|
{
|
|
public string? DisplayName { get; set; }
|
|
public string? UnitName { get; set; }
|
|
} |