12 lines
426 B
C#
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;
|
|
} |