25 lines
535 B
C#
25 lines
535 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace RobotNet10.FleetManager.Services.OpenACS;
|
|
|
|
public class ACSStatusBodyResponse
|
|
{
|
|
[JsonPropertyName("result")]
|
|
[Required]
|
|
public string Result { get; set; } = string.Empty;
|
|
|
|
}
|
|
|
|
public class ACSStatusResponse
|
|
{
|
|
[JsonPropertyName("header")]
|
|
[Required]
|
|
public ACSHeader? Header { get; set; }
|
|
|
|
|
|
[JsonPropertyName("body")]
|
|
[Required]
|
|
public ACSStatusBodyResponse? Body { get; set; }
|
|
}
|