Files
Govor/Govor.Application/Services/Friends/FriendsBlockService.cs
T
2025-07-08 22:28:04 +07:00

16 lines
406 B
C#

using Govor.Application.Interfaces;
namespace Govor.Application.Services.Friends;
public class FriendsBlockService : IFriendsBlockService
{
public Task BlockFriendRequestAsync(Guid userId, Guid currentUserId)
{
throw new NotImplementedException();
}
public Task UnblockFriendRequestAsync(Guid userId, Guid currentUserId)
{
throw new NotImplementedException();
}
}