1
0
voyager-api/ScrapperAPI/Dtos/AgentRow.cs

11 lines
210 B
C#

namespace ScrapperAPI.Dtos;
public sealed record AgentRow(
string Id,
string? DisplayName,
string CertThumbprint,
DateTimeOffset CreatedAt,
DateTimeOffset LastSeenAt,
bool IsEnabled
);