mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
12 lines
286 B
C#
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; }
|
|
} |