aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Publisher/SequenceItem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Publisher/SequenceItem.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Publisher/SequenceItem.cs63
1 files changed, 0 insertions, 63 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Publisher/SequenceItem.cs b/Software/Visual_Studio/PPC/Tango.PPC.Publisher/SequenceItem.cs
deleted file mode 100644
index a29d626e7..000000000
--- a/Software/Visual_Studio/PPC/Tango.PPC.Publisher/SequenceItem.cs
+++ /dev/null
@@ -1,63 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.Core;
-using Tango.SQLExaminer;
-
-namespace Tango.PPC.Publisher
-{
- public class SequenceItem : ExtendedObject
- {
- private ExaminerSequenceItemType _type;
- public ExaminerSequenceItemType Type
- {
- get { return _type; }
- set { _type = value; RaisePropertyChangedAuto(); }
- }
-
- private ExaminerSequenceItemDirection _direction;
- public ExaminerSequenceItemDirection Direction
- {
- get { return _direction; }
- set { _direction = value; RaisePropertyChangedAuto(); }
- }
-
- private int _index;
- public int Index
- {
- get { return _index; }
- set { _index = value; RaisePropertyChangedAuto(); }
- }
-
- private String _name;
- public String Name
- {
- get { return _name; }
- set { _name = value; RaisePropertyChangedAuto(); }
- }
-
- private String _filePath;
- public String FilePath
- {
- get { return _filePath; }
- set { _filePath = value; RaisePropertyChangedAuto(); RaisePropertyChanged(nameof(FileName)); }
- }
-
- private bool _requiresSerialNumber;
- public bool RequiresSerialNumber
- {
- get { return _requiresSerialNumber; }
- set { _requiresSerialNumber = value; RaisePropertyChangedAuto(); }
- }
-
-
- public String FileName
- {
- get { return Path.GetFileName(FilePath); }
- }
-
- }
-}