using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; using Tango.Core; namespace Tango.BL.Interfaces { public interface ISegment { Int32 SegmentIndex { get; set; } [NotMapped] [JsonIgnore] SynchronizedObservableCollection BrushStops { get; } ISegment Clone(); ISegment Clone(Job job); } }