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

12 lines
426 B
C#

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