aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/SynchronizationOptions.cs
blob: 4579acbe64aea00957a9e65c094891bf9e785d8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>();
        }
    }
}