source: src/FinkiChattery/FinkiChattery.Identity/Quickstart/Consent/ScopeViewModel.cs@ e6a6d9a

dev
Last change on this file since e6a6d9a was e6a6d9a, checked in by Стојков Марко <mst@…>, 3 years ago

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 536 bytes
Line 
1// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3
4
5namespace IdentityServerHost.Quickstart.UI
6{
7 public class ScopeViewModel
8 {
9 public string Value { get; set; }
10 public string DisplayName { get; set; }
11 public string Description { get; set; }
12 public bool Emphasize { get; set; }
13 public bool Required { get; set; }
14 public bool Checked { get; set; }
15 }
16}
Note: See TracBrowser for help on using the repository browser.