mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
9 lines
233 B
C#
9 lines
233 B
C#
using Govor.Application.Interfaces.Messages;
|
|
using Govor.Core.Models;
|
|
|
|
namespace Govor.API.Services;
|
|
|
|
public interface IGroupService : IMessageSendingService, IMessageManagementService
|
|
{
|
|
ChatGroup GetGroupByInvite(string code);
|
|
} |