123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml.Serialization;
- namespace GenericDisplayCommand.Controls.V1
- {
- [Serializable]
- [XmlRoot("GenericDisplayCommand")]
- public class GenericDisplayCommandV1Wrapper : GenericDisplayCommandWrapper
- {
- private int _version;
-
-
-
- private string _prompt;
-
-
-
- private string _nozzleId;
- public override int Version
- {
- get => _version;
- set => _version = 1;
- }
- public string Prompt
- {
- get => _prompt;
- set => _prompt = value;
- }
-
-
-
- public string NozzleId
- {
- get => _nozzleId;
- set => _nozzleId = value;
- }
- }
- }
|