mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-06 06:47:29 +00:00
13 lines
269 B
C#
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; }
|
|
}
|
|
}
|