namespace adas_core.Domain.Models.DTO.Display; /// /// Represents a data transfer object that encapsulates display configuration and location information. /// /// /// This DTO is used to transfer display configuration settings along with their associated location data between application layers. /// public class DisplayConfigLocationDto { public string? DisplayName { get; set; } public string? UnitName { get; set; } }