source:
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/ViewModels/NavbarViewModel.cs
@
13805
Last change on this file since 13805 was 13733, checked in by jlodewyc, 9 years ago | |
---|---|
File size: 361 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Threading.Tasks; |
5 | |
6 | namespace HeuristicLab.Clients.Hive.WebJobManager.ViewModels |
7 | { |
8 | public class NavbarViewModel |
9 | { |
10 | |
11 | public string Active { get; set; } |
12 | |
13 | public NavbarViewModel(string ac) |
14 | { |
15 | Active = ac; |
16 | } |
17 | } |
18 | } |
Note: See TracBrowser
for help on using the repository browser.