Files
PowderCoatingLogix/src/PowderCoating.Application/Interfaces/ISmsService.cs
T
2026-04-23 21:38:24 -04:00

7 lines
175 B
C#

namespace PowderCoating.Application.Interfaces;
public interface ISmsService
{
Task<(bool Success, string? ErrorMessage)> SendSmsAsync(string toPhone, string message);
}