24 lines
543 B
C#
24 lines
543 B
C#
|
|
using System.Xml.Serialization;
|
|||
|
|
|
|||
|
|
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges.LandXMLData
|
|||
|
|
{
|
|||
|
|
[XmlType]
|
|||
|
|
[Serializable]
|
|||
|
|
public abstract class GenerationRangeInstance : GenerationRange, IGenerationRangeInstance, IGenerationRange, IInstance
|
|||
|
|
{
|
|||
|
|
protected GenerationRangeInstance()
|
|||
|
|
{
|
|||
|
|
_instance = -1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected int _instance;
|
|||
|
|
|
|||
|
|
[XmlAttribute("i")]
|
|||
|
|
public int Instance
|
|||
|
|
{
|
|||
|
|
get => _instance;
|
|||
|
|
set => _instance = value;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|