mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
9 lines
235 B
C#
9 lines
235 B
C#
using System.Threading.Tasks;
|
|
using PodNoms.Api.Models.ViewModels;
|
|
|
|
namespace PodNoms.Api.Services {
|
|
public interface ISupportChatService {
|
|
Task<bool> InitiateSupportRequest(string fromUser, ChatViewModel message);
|
|
}
|
|
}
|