namespace adas_core.Domain.Models.DTO.Display;
///
/// Represents a data transfer object used to update the name of a display configuration.
///
///
/// This DTO is intended to carry the necessary information to modify the name of an existing display configuration entity.
///
public class UpdateDisplayConfigNameDto
{
public string DisplayName { get; set; } = string.Empty;
}