using System.Collections.Generic; using System.Threading.Tasks; using Demo.Domain.Models; namespace presence_client.ApiClients.Interfaces; public interface IGroupApiClient { Task> GetGroupsAsync(); Task> GetGroupsWithUsersAsync(); }