using System;
using NHapi.Base.Model;
namespace NHapi.Model.V251{
/// <summary>/// Summary description for ST.
/// </summary>
public class ST: AbstractPrimitive
{
/// <summary>Return the version
/// <returns>2.5.1</returns>
///</summary>
virtual public System.String Version
{
get
{
return "2.5.1";
}
}
///<summary>Construct the type
///<param name="theMessage">message to which this Type belongs</param>
///</summary>
public ST(IMessage theMessage):base(theMessage)
{}
///<summary>Construct the type
///<param name="message">message to which this Type belongs</param>
///<param name="description">The description of this type</param>
///</summary>
public ST(IMessage message, string description) : base(message,description)
{}
}
}
|