using System; using System.Collections.Generic; namespace StellaOps.Platform.WebService.Contracts; public sealed record PlatformSearchItem( string EntityId, string EntityType, string Title, string Summary, string Source, string? Url, double Score, DateTimeOffset UpdatedAt); public sealed record PlatformSearchResult( IReadOnlyList Items, int Total, int Limit, int Offset, string? Query);