blob: 53cc92d64e1d6ea9d6322fa9dccab87f93db7578 (
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 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<BrushStop> BrushStops { get; }
ISegment Clone();
ISegment Clone(Job job);
}
}
|