yavsc/Yavsc/ViewModels/Auth/AuthorisationView.cs

11 lines
242 B
C#

8 years ago
using System.Collections.Generic;
8 years ago
using Microsoft.Extensions.Primitives;
8 years ago
8 years ago
namespace Yavsc.Models.Auth
8 years ago
{
public class AuthorisationView { 
8 years ago
public Scope[] Scopes { get; set; }
8 years ago
public string Message { get; set; }
8 years ago
}
}