Reformat TicketValidationResult.cs.

release-v1.1.0
Icedream 2015-03-22 00:10:49 +01:00
parent 86c75a5d61
commit 4763cb8e0e
1 changed files with 10 additions and 10 deletions

View File

@ -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; }
} }
} }