using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.PPC.Jobs.Models { public interface ISegmentModel { String Name { get; set; } double Length { get; } double FullLength { get; } double LengthWithInterSegment { get; } bool IsGroupSegment { get; } bool IsSelected { get; set; } bool IsLast { get; set; } Int32 SegmentIndex { get; set; } double InterSegmentLength { get; } bool EnableInterSegment { get; set; } bool ShowGap { get; } ISegmentModel Clone(); } }