namespace adas_core.Domain.Models.Observations; /// /// Represents a paginated collection of observation results, typically used to return a subset of observations along with associated pagination metadata. /// public class ObservationPaginatedResult { public int Count { get; set; } = 0; public List Data { get; set; } = []; }