namespace PS.IPAM; using System; [Serializable] public class Session { public AuthType AuthType { get; } public string Token { get; } public string AppID { get; } public string URL { get; } public DateTime? Expires { get; } public Object? Credentials { get; } public Session( AuthType authType, string token, string appId, string url, DateTime? expires, Object? credentials ) { AuthType = authType; Token = token; AppID = appId; URL = url; Expires = expires; Credentials = credentials; } public override string ToString() { return base.ToString(); } }