diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/SynchronizationOptions.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/SynchronizationOptions.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/SynchronizationOptions.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/SynchronizationOptions.cs new file mode 100644 index 000000000..4579acbe6 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/SynchronizationOptions.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Common.Publish +{ + public class SynchronizationOptions + { + public ObservableCollection<SequenceItem> ProvisionSequenceItems { get; set; } + + public ObservableCollection<SequenceItem> UpdateSequenceItems { get; set; } + + public SynchronizationOptions() + { + ProvisionSequenceItems = new ObservableCollection<SequenceItem>(); + UpdateSequenceItems = new ObservableCollection<SequenceItem>(); + } + } +} |
