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.IO;
using Newtonsoft.Json.Linq;
namespace NPSharp.RPC.Messages.Data
{
/// <summary>
/// Represents the outcome of a ticket validation attempt, including eventual NPv2 authentication identifiers passed by the server.
/// </summary>
public class TicketValidationResult
using Newtonsoft.Json.Linq;
namespace NPSharp.RPC.Messages.Data
{
/// <summary>
/// Represents the outcome of a ticket validation attempt, including eventual NPv2 authentication identifiers passed by the server.
/// </summary>
public class TicketValidationResult
{
internal TicketValidationResult(Server.AuthenticateValidateTicketResultMessage message)
{
@ -60,6 +60,6 @@ namespace NPSharp.RPC.Messages.Data
/// <summary>
/// A list of NPv2 authentication identifiers belonging to the ticket session.
/// </summary>
public IEnumerable<string> Identifiers { get; private set; }
}
public IEnumerable<string> Identifiers { get; private set; }
}
}