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 AddSegmentWarningDialogVM : DialogViewVM { private bool _notShow; public bool NotShow { get { return _notShow; } set { _notShow = value; RaisePropertyChangedAuto(); } } public AddSegmentWarningDialogVM() { _notShow = false; } } }