using System.Collections.Generic; using ReactiveUI; namespace Presence.Desktop.Models { public class PresencePresenterUI : ReactiveObject { private string _groupName; private List _users; public string GroupName { get => _groupName; set => this.RaiseAndSetIfChanged(ref _groupName, value); } public List Users { get => _users; set => this.RaiseAndSetIfChanged(ref _users, value); } } }