mirror of
https://github.com/bitwarden/server.git
synced 2025-06-14 06:50:47 -05:00
8 lines
164 B
C#
8 lines
164 B
C#
#nullable enable
|
|
namespace Bit.Core.Platform.Services;
|
|
|
|
public interface IMailRenderer
|
|
{
|
|
Task<(string html, string? txt)> RenderAsync(BaseMailView model);
|
|
}
|