mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 20:42:04 -04:00
12 lines
279 B
C#
12 lines
279 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace KfChatDotNetWsClient.Models.Json;
|
|
|
|
public class EditMessageJsonModel
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public required int Id { get; set; }
|
|
|
|
[JsonPropertyName("message")]
|
|
public required string Message { get; set; }
|
|
} |