10 lines
319 B
C#
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; }
|
|
} |