Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -12,10 +12,20 @@ namespace adas_core.Domain.Models.Responses;
/// </remarks>
public class DisplayConfigMinimalResponse
{
/// <summary>
/// Initializes a new instance of the <see cref="DisplayConfigMinimalResponse"/> class, which represents a minimal response payload carrying display configuration data.
/// </summary>
/// <!-- aidoc:v1 sig=722895f body=4448e1d -->
public DisplayConfigMinimalResponse()
{
}
/// <summary>
/// Initializes a new <see cref="DisplayConfigMinimalResponse"/>, a minimal response view of a display configuration, from the supplied <paramref name="displayConfig"/> and optional <paramref name="isInUse"/> flag.
/// </summary>
/// <param name="displayConfig">The source <see cref="DisplayConfigSummary"/> whose <see cref="DisplayConfigSummary.Id"/>, <see cref="DisplayConfigSummary.Type"/>, and <see cref="DisplayConfigSummary.Name"/> populate the response.</param>
/// <param name="isInUse">The nullable boolean indicating whether the display configuration is in use, stored in <see cref="DisplayConfigMinimalResponse.IsInUse"/>.</param>
/// <!-- aidoc:v1 sig=017b17e body=422f274 -->
public DisplayConfigMinimalResponse(DisplayConfigSummary displayConfig, bool? isInUse = false)
{
Id = displayConfig.Id;