sozsoft-platform/api/modules/Sozsoft.Sender/Rocket/ISozsoftRocketSender.cs

10 lines
211 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
using Volo.Abp.DependencyInjection;
namespace Sozsoft.Sender.Rocket;
public interface ISozsoftRocketSender : ITransientDependency
{
Task<RocketSendResult> SendAsync(string Username, string Message);
}