24 lines
555 B
C#
24 lines
555 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.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;
|
|
}
|
|
}
|
|
}
|