presence/presence_client/ApiClients/Interfaces/IGroupApiClient.cs
2025-04-30 04:13:44 +03:00

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();
}