:drunk: Write shit code trying to split up the Auth (WIP)
This commit is contained in:
6
DysonNetwork.Pass/Email/EmailModels.cs
Normal file
6
DysonNetwork.Pass/Email/EmailModels.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace DysonNetwork.Pass.Email;
|
||||
|
||||
public class EmailModels
|
||||
{
|
||||
// Dummy class for EmailModels
|
||||
}
|
10
DysonNetwork.Pass/Email/EmailService.cs
Normal file
10
DysonNetwork.Pass/Email/EmailService.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace DysonNetwork.Pass.Email;
|
||||
|
||||
public class EmailService
|
||||
{
|
||||
public Task SendTemplatedEmailAsync<TTemplate, TModel>(string recipientName, string recipientEmail, string subject, TModel model) where TTemplate : class where TModel : class
|
||||
{
|
||||
// Dummy implementation
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
}
|
6
DysonNetwork.Pass/Email/RazorViewRenderer.cs
Normal file
6
DysonNetwork.Pass/Email/RazorViewRenderer.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace DysonNetwork.Pass.Email;
|
||||
|
||||
public class RazorViewRenderer
|
||||
{
|
||||
// Dummy class for RazorViewRenderer
|
||||
}
|
Reference in New Issue
Block a user