using System; namespace Sai.Toolkit.Core.LandXMLData { public interface IGenerationRange { double EndStation { get; set; } double GenerationEndStation { get; set; } double GenerationStartStation { get; set; } double StartStation { get; set; } Tuple GetGenerationScopeIntersection(IGenerationRange parent); } }