yavsc/Yavsc/ViewModels/Auth/AuthorisationView.cs

11 lines
242 B
C#

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