Skip to content

Instantly share code, notes, and snippets.

@FraukeN
Last active October 10, 2016 10:11
Show Gist options
  • Save FraukeN/6bc37063a2a4f596c72d5ccadb229f53 to your computer and use it in GitHub Desktop.
Save FraukeN/6bc37063a2a4f596c72d5ccadb229f53 to your computer and use it in GitHub Desktop.
Project class
public class Project : ObservableObject
{
private string _title;
public string Title
{
get { return _title; }
set
{
_title = value;
RaisePropertyChanged(nameof(Title));
}
}
private TimeSpan _totalTime;
public TimeSpan TotalTime
{
get { return _totalTime; }
set
{
_totalTime = value;
RaisePropertyChanged(nameof(TotalTime));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment