- modularize Citrix and agent integrations and add remote desktop endpoints - extend ticket overview, ticket links, token validation, and staged relation handling - update configuration, licensing, project, signing, and publish artifacts
23 lines
570 B
C#
23 lines
570 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace C4IT.DataHistoryProvider.Base.Modules.Agent.DTOs
|
|
{
|
|
public class AgentLogonResultDto
|
|
{
|
|
[JsonProperty("access_token")]
|
|
public string AccessToken { get; set; }
|
|
|
|
[JsonProperty("expires_in")]
|
|
public int ExpiresIn { get; set; }
|
|
|
|
[JsonProperty("token_type")]
|
|
public string TokenType { get; set; }
|
|
|
|
[JsonProperty("scope")]
|
|
public string Scope { get; set; }
|
|
|
|
[JsonProperty("remote_ip")]
|
|
public string RemoteIp { get; set; }
|
|
}
|
|
}
|