Files
git.stella-ops.org/src/StellaOps.Cli/Services/Models/ExcititorProviderSummary.cs

12 lines
239 B
C#

using System;
namespace StellaOps.Cli.Services.Models;
internal sealed record ExcititorProviderSummary(
string Id,
string Kind,
string DisplayName,
string TrustTier,
bool Enabled,
DateTimeOffset? LastIngestedAt);