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; } } }