13 lines
503 B
C#
13 lines
503 B
C#
using adas_core.Domain.Models.MongoModels;
|
|
|
|
namespace adas_core.Domain.Models.DTO.Display;
|
|
|
|
/// <summary>
|
|
/// Represents a data transfer object used for displaying nurse information, extending the base display configuration functionality provided by <see cref="DisplayConfigDto"/>.
|
|
/// </summary>
|
|
public class DisplayNurseDto : DisplayConfigDto
|
|
{
|
|
public List<BannerItem>? HomeBanner { get; set; }
|
|
public ColorConfig? ColorConfig { get; set; }
|
|
public FormConfig? FormConfig { get; set; }
|
|
} |