15 lines
395 B
C#
15 lines
395 B
C#
|
|
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges.LandXMLData
|
|||
|
|
{
|
|||
|
|
public interface IGenerationRange
|
|||
|
|
{
|
|||
|
|
double EndStation { get; set; }
|
|||
|
|
|
|||
|
|
double GenerationEndStation { get; set; }
|
|||
|
|
double GenerationStartStation { get; set; }
|
|||
|
|
|
|||
|
|
double StartStation { get; set; }
|
|||
|
|
|
|||
|
|
Tuple<double, double> GetGenerationScopeIntersection(IGenerationRange parent);
|
|||
|
|
}
|
|||
|
|
}
|