All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s
14 lines
293 B
C#
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; }
|
|
}
|
|
}
|