yavsc/Yavsc/ViewModels/Auth/AuthorisationView.cs

12 lines
305 B
C#
Raw Normal View History

2016-06-09 01:29:23 +02:00
using System.Collections.Generic;
2016-06-01 23:47:06 +02:00
namespace Yavsc
{
public class AuthorisationView { 
public Application Application { get; set; }
2016-06-09 01:29:23 +02:00
public IEnumerable<string> Scopes { get; set; }
public string RedirectUrl { get; set; }
public string Message { get; set; }
2016-06-01 23:47:06 +02:00
}
}