Files
adas-core/adas-core.Domain/Models/DTO/ConfigObservationDto.cs
2026-06-26 10:29:23 +02:00

10 lines
319 B
C#

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