Files
zap-stream-api/NostrStreamer/ApiModel/PushSubscriptionRequest.cs
2023-12-18 12:19:09 +00:00

19 lines
419 B
C#

using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class PushSubscriptionRequest
{
[JsonProperty("endpoint")]
public string Endpoint { get; init; } = null!;
[JsonProperty("auth")]
public string Auth { get; init; } = null!;
[JsonProperty("key")]
public string Key { get; init; } = null!;
[JsonProperty("scope")]
public string Scope { get; init; } = null!;
}