diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-15 16:21:13 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-15 16:21:13 +0200 |
| commit | dcdee2479e0dc709835e97853bb9db0349210336 (patch) | |
| tree | ceafc1d3679931f0798236434e284d9a7ed644de /Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersion.cs | |
| parent | b0909a133eaba5223ca397c8186ba6b96fdaa647 (diff) | |
| download | Tango-dcdee2479e0dc709835e97853bb9db0349210336.tar.gz Tango-dcdee2479e0dc709835e97853bb9db0349210336.zip | |
Machine Studio v3.5.70 Stable.
Added stable/beta release modes.
Handle corrupted log file names.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersion.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersion.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersion.cs b/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersion.cs index 75838118c..3167b3ccf 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersion.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersion.cs @@ -33,6 +33,8 @@ namespace Tango.BL.Entities public event EventHandler<Boolean> ForceUpdateChanged; + public event EventHandler<Boolean> StableChanged; + public event EventHandler<User> UserChanged; protected String _version; @@ -173,6 +175,34 @@ namespace Tango.BL.Entities } } + protected Boolean _stable; + + /// <summary> + /// Gets or sets the machinestudioversion stable. + /// </summary> + + [Column("STABLE")] + + public Boolean Stable + { + get + { + return _stable; + } + + set + { + if (_stable != value) + { + _stable = value; + + StableChanged?.Invoke(this, value); + + RaisePropertyChanged(nameof(Stable)); + } + } + } + protected User _user; /// <summary> |
