using Centron.Api.docuFORM.Models.Swagger; using System.Text.Json.Serialization; namespace Centron.Api.docuFORM.Models.Swagger.Responses; public class DevicesResponse { [JsonPropertyName("devices")] public List? Devices { get; set; } [JsonPropertyName("lastHostAddressChangeOn")] public string? LastHostAddressChangeOn { get; set; } [JsonPropertyName("nextPageToken")] public string? NextPageToken { get; set; } }