Created
April 1, 2014 04:51
Revisions
-
mariodivece created this gist
Apr 1, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ namespace Unosquare.Wpf { using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public abstract class DimensionalObjectBase : ViewModelBase { /// <summary> /// Initializes a new instance of the <see cref="DimensionalObjectBase"/> class. /// </summary> protected DimensionalObjectBase() : base() { } /// <summary> /// Notifies property changes for all dimensional properties. /// For example, this method calls OnPropertyChanged for Start Time, End Time, Duration, Location etc. /// </summary> public abstract void NotifyDimensionalChange(); } }