7 lines
229 B
C#
7 lines
229 B
C#
namespace TaxBaik.Application.Services;
|
|
|
|
public interface IInquiryNotificationService
|
|
{
|
|
Task NotifyCreatedAsync(int inquiryId, string name, string phone, string serviceType, string message, CancellationToken ct = default);
|
|
}
|