using System.Threading.Tasks; using PodNoms.Api.Models.ViewModels; namespace PodNoms.Api.Services { public interface ISupportChatService { Task InitiateSupportRequest(string fromUser, ChatViewModel message); } }