Files
adas-core/adas-core.Domain/Models/DTO/Display/UpdateDisplayConfigNameDto.cs
T

13 lines
460 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>
/// <!-- aidoc:v1 sig=4ec9b5b -->
public class UpdateDisplayConfigNameDto
{
public string DisplayName { get; set; } = string.Empty;
}