Init
This commit is contained in:
12
NostrStreamer/ApiModel/Account.cs
Normal file
12
NostrStreamer/ApiModel/Account.cs
Normal file
@ -0,0 +1,12 @@
|
||||
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!;
|
||||
}
|
Reference in New Issue
Block a user