yavsc/Yavsc/ViewModels/Auth/AuthorisationView.cs

11 lines
242 B
C#
Raw Normal View History

2016-06-09 01:29:23 +02:00
using System.Collections.Generic;
2016-06-12 01:32:51 +02:00
using Microsoft.Extensions.Primitives;
2016-06-01 23:47:06 +02:00
2016-06-12 01:32:51 +02:00
namespace Yavsc.Models.Auth
2016-06-01 23:47:06 +02:00
{
public class AuthorisationView { 
2016-06-12 01:32:51 +02:00
public Scope[] Scopes { get; set; }
2016-06-09 01:29:23 +02:00
public string Message { get; set; }
2016-06-01 23:47:06 +02:00
}
}