12 lines
190 B
C#
12 lines
190 B
C#
|
using NodaTime;
|
||
|
|
||
|
namespace Foxchat.Core.Federation;
|
||
|
|
||
|
public record SignatureData(
|
||
|
Instant Time,
|
||
|
string Host,
|
||
|
string RequestPath,
|
||
|
int? ContentLength,
|
||
|
string? UserId
|
||
|
) { }
|