Initial commit of PSProxmox module

This commit is contained in:
Alphaeus Mote
2025-04-28 14:11:32 -04:00
commit 2385442c83
80 changed files with 9481 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using Newtonsoft.Json;
namespace PSProxmox.Models
{
/// <summary>
/// Represents a response from the Proxmox VE API.
/// </summary>
/// <typeparam name="T">The type of data in the response.</typeparam>
public class ProxmoxResponse<T>
{
/// <summary>
/// Gets or sets the data in the response.
/// </summary>
[JsonProperty("data")]
public T Data { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the request was successful.
/// </summary>
[JsonProperty("success")]
public bool Success { get; set; }
}
}