namespace adas_core.Domain.Models.DTO; /// /// Represents a data transfer object used to convey configuration observation information between application layers. /// public class ConfigObservationDto { public string Id { get; set; } = string.Empty; public long ItemCount { get; set; } }