Files
masiton 904b244e76
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s
Client library reviewed.
2025-07-05 03:29:44 +02:00

14 lines
293 B
C#

using System.Text.Json.Serialization;
namespace MessengerApi.Model
{
public class State
{
[JsonPropertyName("isDelivered")]
public bool IsDelivered { get; set; }
[JsonPropertyName("isAcknowledged")]
public bool IsAcknowledged { get; set; }
}
}