Revision d9b1cbeb trunk/Pithos.Client.WPF/Preferences/GroupsViewModel.cs

b/trunk/Pithos.Client.WPF/Preferences/GroupsViewModel.cs
10 10
    using System.Collections.Generic;
11 11
    using System.Linq;
12 12
    using System.Text;
13
    using Caliburn.Micro;
13 14

  
14 15
    /// <summary>
15 16
    /// TODO: Update summary.
16 17
    /// </summary>
17
    public class GroupsViewModel
18
    public class GroupsViewModel:PropertyChangedBase
18 19
    {
20

  
21
        private List<string> _groups;
22

  
23
        public List<string> Groups
24
        {
25
            get { return _groups; }
26
            set
27
            {
28
                _groups = value;
29
                NotifyOfPropertyChange(() => Groups);
30
            }
31
        }
19 32
    }
20 33
}

Also available in: Unified diff