Client library reviewed.
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s
This commit is contained in:
13
code/MessengerApi.Client/Model/State.cs
Normal file
13
code/MessengerApi.Client/Model/State.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user