mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
11 lines
298 B
C#
11 lines
298 B
C#
using Govor.Application.Profiles;
|
|
|
|
namespace Govor.Application.Interfaces;
|
|
|
|
public interface IProfileService
|
|
{
|
|
public Task<UserProfile> GetUserProfileAsync(Guid userId);
|
|
public Task SetDescription(string description, Guid userId);
|
|
public Task SetNewIcon(Guid userId, Guid iconId);
|
|
}
|