Files
Govor/Govor.Core/Services/IGroupService.cs
T
2025-06-18 12:08:21 +07:00

8 lines
137 B
C#

using Govor.Core.Models;
namespace Govor.Core.Services;
public interface IGroupService
{
ChatGroup GetGroupByInvite(string code);
}