diff options
| author | Roy <Roy.mail.net@gmail.com> | 2023-02-06 19:47:59 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2023-02-06 19:47:59 +0200 |
| commit | 5f8a6184e8c0b6de2e61fd9845378eb4324c50a6 (patch) | |
| tree | cf4c5f2612168d22a5827588e081ea71da60aa39 /Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs | |
| parent | 48c49f651b9acb1aa87f845d68ed5b4f49f3d447 (diff) | |
| download | Tango-5f8a6184e8c0b6de2e61fd9845378eb4324c50a6.tar.gz Tango-5f8a6184e8c0b6de2e61fd9845378eb4324c50a6.zip | |
Machine Type Connection, Discovery Handling.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs index 005121b88..9c94363df 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs @@ -664,6 +664,11 @@ namespace Tango.Integration.Operation /// </summary> public bool IsSpoolReplaced { get; private set; } + /// <summary> + /// Gets or sets the type of the machine. + /// </summary> + public MachineTypes MachineType { get; set; } + #endregion #region Virtual Methods @@ -1499,7 +1504,8 @@ namespace Tango.Integration.Operation { Password = "1234", UnixTime = DateTimeOffset.UtcNow.ToUnixTimeSeconds(), - SpoolType = _currentSpoolType + SpoolType = _currentSpoolType, + MachineType = (PMR.Common.MachineType)MachineType, }; try |
