11 lines
228 B
C#
11 lines
228 B
C#
using System;
|
|
|
|
namespace StellaOps.Feedser.Source.CertFr.Internal;
|
|
|
|
public sealed record CertFrFeedItem(
|
|
string AdvisoryId,
|
|
Uri DetailUri,
|
|
DateTimeOffset Published,
|
|
string? Title,
|
|
string? Summary);
|