Last active
October 10, 2016 10:11
-
-
Save FraukeN/6bc37063a2a4f596c72d5ccadb229f53 to your computer and use it in GitHub Desktop.
Project class
This file contains 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
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