aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/NavigationView.cs
blob: f5744fd21ae4e03a448757219976b507d97b91ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Common.Navigation
{
    /// <summary>
    /// Represents the available views to navigate to using the <see cref="INavigationManager"/>.
    /// </summary>
    public enum NavigationView
    {
        LoadingView,
        LayoutView,
        LoginView,
        HomeModule,
        ShutdownView,
    }
}
>; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; namespace Tango.BL.DTO { public abstract class TechControllerDTOBase : ObservableEntityDTO<TechControllerDTO, TechController> { /// <summary> /// code /// </summary> public Int32 Code { get; set; } /// <summary> /// name /// </summary> public String Name { get; set; } /// <summary> /// description /// </summary> public String Description { get; set; } /// <summary> /// min /// </summary> public Double Min { get; set; } /// <summary> /// max /// </summary> public Double Max { get; set; } /// <summary> /// units /// </summary> public String Units { get; set; } } }