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