1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-14 06:50:47 -05:00
bitwarden/src/Core/Platform/Services/IMailRenderer.cs
2025-06-12 12:30:16 +02:00

8 lines
164 B
C#

#nullable enable
namespace Bit.Core.Platform.Services;
public interface IMailRenderer
{
Task<(string html, string? txt)> RenderAsync(BaseMailView model);
}