d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
23 lines
556 B
C#
23 lines
556 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Enums;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
|
|
|
|
public record SendMessageRequest : IRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("dialogId")]
|
|
public required string DialogId { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public required MessageType Type { get; set; }
|
|
|
|
[JsonPropertyName("text")]
|
|
public required string Text { get; set; }
|
|
|
|
[JsonPropertyName("replyTo")]
|
|
public required string ReplyTo { get; set; }
|
|
}
|