using Newtonsoft.Json;
namespace PSProxmox.Models
{
///
/// Represents a response from the Proxmox VE API.
///
/// The type of data in the response.
public class ProxmoxResponse
{
///
/// Gets or sets the data in the response.
///
[JsonProperty("data")]
public T Data { get; set; }
///
/// Gets or sets a value indicating whether the request was successful.
///
[JsonProperty("success")]
public bool Success { get; set; }
}
}