Files
adas-core/adas-core.Domain/Models/DTO/Display/DisplayConfigLocationDto.cs
T
2026-06-26 10:29:23 +02:00

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; }
}