Frontend gaps fill work. Testing fixes work. Auditing in progress.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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<PlatformSearchItem> Items,
|
||||
int Total,
|
||||
int Limit,
|
||||
int Offset,
|
||||
string? Query);
|
||||
Reference in New Issue
Block a user