aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/ISegmentModel.cs
blob: d3142aa06b0e957ef32a326a02b3b8cfc9296a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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();
    }
}