Files
SPT-Server-Build/Core/Models/Eft/Dialog/SendMessageRequest.cs
T
2025-01-08 13:41:25 +00:00

19 lines
435 B
C#

using System.Text.Json.Serialization;
using Core.Models.Enums;
namespace Core.Models.Eft.Dialog;
public class SendMessageRequest
{
[JsonPropertyName("dialogId")]
public string? DialogId { get; set; }
[JsonPropertyName("type")]
public MessageType? Type { get; set; }
[JsonPropertyName("text")]
public string? Text { get; set; }
[JsonPropertyName("replyTo")]
public string? ReplyTo { get; set; }
}