d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
25 lines
556 B
C#
25 lines
556 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Notifier;
|
|
|
|
public record NotifierChannel
|
|
{
|
|
|
|
|
|
[JsonPropertyName("server")]
|
|
public string? Server { get; set; }
|
|
|
|
[JsonPropertyName("channel_id")]
|
|
public MongoId? ChannelId { get; set; }
|
|
|
|
[JsonPropertyName("url")]
|
|
public string? Url { get; set; }
|
|
|
|
[JsonPropertyName("notifierServer")]
|
|
public string? NotifierServer { get; set; }
|
|
|
|
[JsonPropertyName("ws")]
|
|
public string? WebSocket { get; set; }
|
|
}
|