Files
zap-stream-api/NostrStreamer/ApiModel/Account.cs
2023-06-30 14:08:15 +01:00

13 lines
229 B
C#

using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class Account
{
[JsonProperty("url")]
public string Url { get; init; } = null!;
[JsonProperty("key")]
public string Key { get; init; } = null!;
}