namespace DanieleMarotta.RiversongCodeShowcase { public class TimePanelModel : UIModel { public int Week { get; private set; } public int Month { get; private set; } public int Year { get; private set; } public void Update(int week, int month, int year) { Week = week; Month = month; Year = year; NotifyPropertyChanged(); } } }