11 lines
267 B
C#
11 lines
267 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Demo.Domain.Models;
|
|
|
|
namespace presence_client.ApiClients.Interfaces;
|
|
|
|
public interface IGroupApiClient
|
|
{
|
|
Task<List<Group>> GetGroupsAsync();
|
|
Task<List<GroupU>> GetGroupsWithUsersAsync();
|
|
} |