.github
.idx
DysonNetwork.Sphere
Account
Activity
Auth
Chat
Connection
Developer
Email
EmailModels.cs
EmailService.cs
RazorViewRenderer.cs
Localization
Migrations
Pages
Permission
Post
Properties
Publisher
Realm
Resources
Sticker
Storage
Wallet
wwwroot
.DS_Store
.gitignore
AppDatabase.cs
Dockerfile
DysonNetwork.Sphere.csproj
DysonNetwork.Sphere.csproj.DotSettings.user
DysonNetwork.Sphere.http
Program.cs
appsettings.json
package.json
postcss.config.js
tailwind.config.js
.dockerignore
.gitignore
DysonNetwork.sln
DysonNetwork.sln.DotSettings.user
compose.yaml
19 lines
437 B
C#
19 lines
437 B
C#
namespace DysonNetwork.Sphere.Email;
|
|
|
|
public class LandingEmailModel
|
|
{
|
|
public required string Name { get; set; }
|
|
public required string Link { get; set; }
|
|
}
|
|
|
|
public class AccountDeletionEmailModel
|
|
{
|
|
public required string Name { get; set; }
|
|
public required string Link { get; set; }
|
|
}
|
|
|
|
public class PasswordResetEmailModel
|
|
{
|
|
public required string Name { get; set; }
|
|
public required string Link { get; set; }
|
|
} |