yavsc/Yavsc/ViewModels/Auth/AuthorisationView.cs

12 lines
305 B
C#

8 years ago
using System.Collections.Generic;
8 years ago
namespace Yavsc
{
public class AuthorisationView { 
public Application Application { get; set; }
8 years ago
public IEnumerable<string> Scopes { get; set; }
public string RedirectUrl { get; set; }
public string Message { get; set; }
8 years ago
}
}