Foxchat.NET/Foxchat.Core/Federation/SignatureData.cs

20 lines
No EOL
347 B
C#

using NodaTime;
namespace Foxchat.Core.Federation;
public record SignatureData(
Instant Time,
string Host,
string RequestPath,
int? ContentLength,
string? UserId
)
{
public static readonly SignatureData Empty = new(
Instant.MinValue,
string.Empty,
string.Empty,
null,
null
);
}