Revert everything back. Mission failed.

This commit is contained in:
Burak Kaan Köse
2024-07-20 04:16:45 +02:00
parent e04c17d591
commit 2d6155ae6f
381 changed files with 3246 additions and 292 deletions

View File

@@ -0,0 +1,20 @@
using Wino.Core.Domain.Interfaces;
namespace Wino.Services
{
public class ToastActivationService
{
private readonly IMailService _mailService;
private readonly IWinoRequestDelegator _winoRequestDelegator;
private readonly INativeAppService _nativeAppService;
public ToastActivationService(IMailService mailService,
IWinoRequestDelegator winoRequestDelegator,
INativeAppService nativeAppService)
{
_mailService = mailService;
_winoRequestDelegator = winoRequestDelegator;
_nativeAppService = nativeAppService;
}
}
}