using System; using System.Collections.Generic; using System.Threading.Tasks; using Demo.Domain.Models; using presence_client.DTO; namespace presence_client.ApiClients.Interfaces; public interface IUserApiClient { Task DeleteUserAsync(Guid userGuid); Task UpdateUserFioAsync(Guid userGuid, string fio); Task DeleteUsersByGroupIdAsync(int groupId); Task CreateUser(string fio, string groupName); }