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