Bugfix stream editor
This commit is contained in:
2023-08-01 15:35:11 +01:00
parent 82dc5615c2
commit 7ca87a6181
20 changed files with 561 additions and 93 deletions

View File

@ -0,0 +1,9 @@
using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class PatchAccount
{
[JsonProperty("accept_tos")]
public bool AcceptTos { get; init; }
}