sozsoft-platform/api/modules/Sozsoft.Sender/Rocket/ISozsoftRocketSender.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

9 lines
211 B
C#

using Volo.Abp.DependencyInjection;
namespace Sozsoft.Sender.Rocket;
public interface ISozsoftRocketSender : ITransientDependency
{
Task<RocketSendResult> SendAsync(string Username, string Message);
}