|
| 1 | +//Released under the MIT License. |
| 2 | +// |
| 3 | +//Copyright (c) 2018 Ntreev Soft co., Ltd. |
| 4 | +// |
| 5 | +//Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated |
| 6 | +//documentation files (the "Software"), to deal in the Software without restriction, including without limitation the |
| 7 | +//rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit |
| 8 | +//persons to whom the Software is furnished to do so, subject to the following conditions: |
| 9 | +// |
| 10 | +//The above copyright notice and this permission notice shall be included in all copies or substantial portions of the |
| 11 | +//Software. |
| 12 | +// |
| 13 | +//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| 14 | +//WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| 15 | +//COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 16 | +//OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 17 | + |
| 18 | +using System; |
| 19 | +using System.Collections.Generic; |
| 20 | +using System.Linq; |
| 21 | +using System.Text; |
| 22 | +using System.Threading.Tasks; |
| 23 | +using Ntreev.Crema.Services; |
| 24 | + |
| 25 | +namespace Ntreev.Crema.Client.Framework.Dialogs.ViewModels |
| 26 | +{ |
| 27 | + public class UserAuthenticationTreeViewItemViewModel : UserAuthenticationTreeItemBase |
| 28 | + { |
| 29 | + public UserAuthenticationTreeViewItemViewModel(Authentication authentication, UserAuthenticationDescriptor descriptor, object owner) |
| 30 | + : base(authentication, descriptor, owner) |
| 31 | + { |
| 32 | + } |
| 33 | + |
| 34 | + public override string DisplayName => this.Descriptor.DisplayName; |
| 35 | + } |
| 36 | +} |
0 commit comments