proxmox-sharp/src/Tribufu.Proxmox/Models/ProxmoxHighAvailability.cs

13 lines
269 B
C#

// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models
{
public class ProxmoxHighAvailability
{
[JsonProperty("managed")]
public int Managed { get; set; }
}
}