17 lines
485 B
C#
17 lines
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using DotNetOpenAuth.OAuth2.Messages;
|
|
|
|
namespace Taloyhtio.GeneralSSO.Server.CodeFiles.Models
|
|
{
|
|
public class AuthorizeModel
|
|
{
|
|
public string ClientName { get; set; }
|
|
public HashSet<string> Scope { get; set; }
|
|
public string[] ScopeAsArray { get { return this.Scope.ToArray(); } }
|
|
public EndUserAuthorizationRequest AuthorizationRequest { get; set; }
|
|
}
|
|
}
|