13 lines
247 B
C#
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!;
|
|
}
|