🧱 Render email based on razor components

This commit is contained in:
2025-05-17 17:00:46 +08:00
parent cbef69ba5e
commit d3b56b741e
11 changed files with 323 additions and 64 deletions

View File

@ -0,0 +1,7 @@
namespace DysonNetwork.Sphere.Account.Email;
public class LandingEmailModel
{
public required string Name { get; set; }
public required string VerificationLink { get; set; }
}