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

12 lines
187 B
C#
Raw Normal View History

2024-05-11 15:26:47 +02:00
using NodaTime;
namespace Foxchat.Core.Federation;
public record SignatureData(
Instant Time,
string Host,
string RequestPath,
int? ContentLength,
string? UserId
2024-05-14 14:50:01 +02:00
);