using System.Collections.Generic; namespace Presence.Desktop.ViewModels { public class GroupPresenter { public int Id { get; set; } public string Name { get; set; } public IEnumerable? users { get; set; } = null; } }