mirror of https://github.com/icedream/npsharp.git
Reformat TicketValidationResult.cs.
parent
86c75a5d61
commit
4763cb8e0e
|
@ -1,14 +1,14 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
using Newtonsoft.Json.Linq;
|
using Newtonsoft.Json.Linq;
|
||||||
|
|
||||||
namespace NPSharp.RPC.Messages.Data
|
namespace NPSharp.RPC.Messages.Data
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents the outcome of a ticket validation attempt, including eventual NPv2 authentication identifiers passed by the server.
|
/// Represents the outcome of a ticket validation attempt, including eventual NPv2 authentication identifiers passed by the server.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class TicketValidationResult
|
public class TicketValidationResult
|
||||||
{
|
{
|
||||||
internal TicketValidationResult(Server.AuthenticateValidateTicketResultMessage message)
|
internal TicketValidationResult(Server.AuthenticateValidateTicketResultMessage message)
|
||||||
{
|
{
|
||||||
|
@ -60,6 +60,6 @@ namespace NPSharp.RPC.Messages.Data
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A list of NPv2 authentication identifiers belonging to the ticket session.
|
/// A list of NPv2 authentication identifiers belonging to the ticket session.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IEnumerable<string> Identifiers { get; private set; }
|
public IEnumerable<string> Identifiers { get; private set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue