using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; using Tango.MachineStudio.Common.Notifications; namespace Tango.MachineStudio.DB.ViewModels { public class ApplicationOsVersionsViewVM : DbTableViewModel { public ApplicationOsVersionsViewVM(INotificationProvider notification) : base(notification) { } } }
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.Developer.Navigation
{
    public enum DeveloperNavigationView
    {
        MachineJobSelectionView,
        JobView,
        RunningJobView
    }
}