aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/InsufficientLiquidQuantityViewVM.cs
blob: e18fc842f3df28eb65ea5f9d2766dea1cb671765 (plain)
1
2
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Integration.Operation;
using Tango.SharedUI;

namespace Tango.MachineStudio.Developer.ViewModels
{
    public class InsufficientLiquidQuantityViewVM : DialogViewVM
    {
        public InsufficientLiquidQuantityException Exception { get; set; }

        public InsufficientLiquidQuantityViewVM(InsufficientLiquidQuantityException ex)
        {
            Exception = ex;
        }
    }
}