Foxchat.NET/Foxchat.Core/Federation/SignatureData.cs
2024-05-14 03:51:31 +02:00

11 lines
190 B
C#

using NodaTime;
namespace Foxchat.Core.Federation;
public record SignatureData(
Instant Time,
string Host,
string RequestPath,
int? ContentLength,
string? UserId
) { }