Files
zap-stream-api/NostrStreamer/ApiModel/PatchAccount.cs
Kieran 7ca87a6181 TOS
Bugfix stream editor
2023-08-01 15:35:11 +01:00

10 lines
163 B
C#

using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class PatchAccount
{
[JsonProperty("accept_tos")]
public bool AcceptTos { get; init; }
}