using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.SharedUI; namespace Tango.PPC.Jobs.Dialogs { public class RepeatJobViewVM : DialogViewVM { private string _headerName; public string HeaderName { get { return _headerName; } set { _headerName = value; RaisePropertyChangedAuto(); } } private int _repeats; public int Repeats { get { return _repeats; } set { _repeats = value; RaisePropertyChangedAuto(); } } private int _maxrepeations; public int MaxRepeations { get { return _maxrepeations; } set { _maxrepeations = value; RaisePropertyChangedAuto(); } } public RepeatJobViewVM(string name, int repeats) { HeaderName = name; Repeats = repeats; } } }