Created
April 1, 2014 04:51
-
-
Save mariodivece/9907898 to your computer and use it in GitHub Desktop.
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 characters
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(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment