Files
zap-stream-api/NostrStreamer/ApiModel/NewForwardRequest.cs
2023-12-07 22:46:36 +00:00

13 lines
247 B
C#

using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class NewForwardRequest
{
[JsonProperty("name")]
public string Name { get; init; } = null!;
[JsonProperty("target")]
public string Target { get; init; } = null!;
}