Files
adas-core/adas-core.Domain/Models/DTO/ConfigObservationDto.cs
T

11 lines
353 B
C#

namespace adas_core.Domain.Models.DTO;
/// <summary>
/// Represents a data transfer object used to convey configuration observation information between application layers.
/// </summary>
/// <!-- aidoc:v1 sig=564b645 -->
public class ConfigObservationDto
{
public string Id { get; set; } = string.Empty;
public long ItemCount { get; set; }
}