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
+28
View File
@@ -0,0 +1,28 @@
using Newtonsoft.Json;
namespace PSProxmox.Models
{
/// <summary>
/// Represents an authentication ticket from the Proxmox VE API.
/// </summary>
public class ProxmoxTicket
{
/// <summary>
/// Gets or sets the authentication ticket.
/// </summary>
[JsonProperty("ticket")]
public string Ticket { get; set; }
/// <summary>
/// Gets or sets the CSRF prevention token.
/// </summary>
[JsonProperty("CSRFPreventionToken")]
public string CSRFPreventionToken { get; set; }
/// <summary>
/// Gets or sets the username.
/// </summary>
[JsonProperty("username")]
public string Username { get; set; }
}
}