Files
KfChatDotNet/KfChatDotNetWsClient/Models/Json/EditMessageJsonModel.cs
barelyprofessional c8016b4fc6 Update for new chyat
2026-02-28 15:34:36 -06:00

12 lines
286 B
C#

using System.Text.Json.Serialization;
namespace KfChatDotNetWsClient.Models.Json;
public class EditMessageJsonModel
{
[JsonPropertyName("uuid")]
public required string Uuid { get; set; }
[JsonPropertyName("message")]
public required string Message { get; set; }
}