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