14 lines
425 B
C#
14 lines
425 B
C#
using adas_core.Domain.Enums;
|
|
using MongoDB.Bson;
|
|
|
|
namespace adas_core.Domain.Models.DTO.Display;
|
|
|
|
/// <summary>
|
|
/// Represents a summary of display configuration settings, providing a consolidated view of display-related parameters.
|
|
/// </summary>
|
|
public class DisplayConfigSummary
|
|
{
|
|
public ObjectId Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public DisplayConfigEnums.DisplayType Type { get; set; }
|
|
} |