Files
ShrlAlgoToolkit/Sai.RvKits/RvIndependent/MetroGauges/LandXMLData/GenerationRangeInstance.cs

25 lines
442 B
C#
Raw Normal View History

2024-09-22 11:05:41 +08:00
using System;
using System.Xml.Serialization;
namespace Sai.Toolkit.Core.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;
}
}
}