using Newtonsoft.Json;
namespace PSProxmox.Models
{
///
/// Represents an authentication ticket from the Proxmox VE API.
///
public class ProxmoxTicket
{
///
/// Gets or sets the authentication ticket.
///
[JsonProperty("ticket")]
public string Ticket { get; set; }
///
/// Gets or sets the CSRF prevention token.
///
[JsonProperty("CSRFPreventionToken")]
public string CSRFPreventionToken { get; set; }
///
/// Gets or sets the username.
///
[JsonProperty("username")]
public string Username { get; set; }
}
}