Skip to content

Commit

Permalink
(#380) events: udpate events service interface
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintAngeLs committed Aug 30, 2024
1 parent ec2ca6f commit 208c260
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace MiniSpace.Services.Events.Application.Services
{
public interface IEventService
{
Task<PagedResponse<IEnumerable<EventDto>>> BrowseEventsAsync(SearchEvents command);
Task<PagedResponse<IEnumerable<EventDto>>> BrowseOrganizerEventsAsync(SearchOrganizerEvents command);
Task<PagedResponse<EventDto>> BrowseEventsAsync(SearchEvents command);
Task<PagedResponse<EventDto>> BrowseOrganizerEventsAsync(SearchOrganizerEvents command);
}
}

0 comments on commit 208c260

Please sign in to comment.