Added a mail template editor

This commit is contained in:
Marcel Baumgartner
2023-07-12 15:48:30 +02:00
parent 4c39ad6170
commit 5bd6f15203
3 changed files with 163 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using Moonlight.App.Helpers.Files;
namespace Moonlight.App.Models.Misc;
public class MailTemplate // This is just for the blazor table at /admin/system/mail
{
public string Name { get; set; } = "";
public FileData File { get; set; }
}