Skip to content

Instantly share code, notes, and snippets.

@mariodivece
Created April 1, 2014 04:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariodivece/9907898 to your computer and use it in GitHub Desktop.
Save mariodivece/9907898 to your computer and use it in GitHub Desktop.
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