feat: publish dbussmsforward refactor

This commit is contained in:
2026-05-08 23:54:03 +08:00
commit 9f1ee9ffe6
77 changed files with 15585 additions and 0 deletions
@@ -0,0 +1,10 @@
using DbusSmsForward.SMSModel;
namespace DbusSmsForward.Notifications;
public interface INotificationSender
{
string Name { get; }
bool IsEnabled { get; }
Task SendAsync(SmsContentModel sms, string body, string deviceName, CancellationToken cancellationToken);
}