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;
- /// <summary>
- /// the prompt will displayed on outdoor screen
- /// </summary>
- private string _prompt;
- /// <summary>
- /// the nozzle Id is the id for the whole site
- /// </summary>
- private string _nozzleId;
- public override int Version
- {
- get => _version;
- set => _version = 1;
- }
- public string Prompt
- {
- get => _prompt;
- set => _prompt = value;
- }
- ///// <summary>
- ///// the nozzle Id is the id for the whole site
- ///// </summary>
- public string NozzleId
- {
- get => _nozzleId;
- set => _nozzleId = value;
- }
- }
- }
|