diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-10-14 12:29:29 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-10-14 12:29:29 +0300 |
| commit | c1686b546c6ecad789b7e5c6f67cb6b885363911 (patch) | |
| tree | 848eeffda2ad976ab8204a1b119a7a2a34369d35 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/ConnectionLostViewVM.cs | |
| parent | 433b17357847457029775512097eed0a4ade70a6 (diff) | |
| download | Tango-c1686b546c6ecad789b7e5c6f67cb6b885363911.tar.gz Tango-c1686b546c6ecad789b7e5c6f67cb6b885363911.zip | |
Enabled KeepAlive and for machine studio and implemented a connection lost dialog.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/ConnectionLostViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/ConnectionLostViewVM.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/ConnectionLostViewVM.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/ConnectionLostViewVM.cs new file mode 100644 index 000000000..f1f4f69c0 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/ConnectionLostViewVM.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.SharedUI; + +namespace Tango.MachineStudio.UI.ViewModels +{ + public class ConnectionLostViewVM : DialogViewVM + { + public String Exception { get; set; } + } +} |
