namespace RecNet.Application.Profiles; public interface IProfileService { Task GetProfileAsync(Guid profileId, CancellationToken ct = default); Task> GetProfilesAsync(List profileIds, CancellationToken ct = default); Task LoginAsync(LoginProfileCommand command, CancellationToken ct = default); }