mirror of
https://github.com/bitwarden/server
synced 2026-01-02 00:23:40 +00:00
14 lines
378 B
C#
14 lines
378 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Bit.Core.Models.Mail
|
|
{
|
|
public class MailMessage
|
|
{
|
|
public string Subject { get; set; }
|
|
public IEnumerable<string> ToEmails { get; set; }
|
|
public string HtmlContent { get; set; }
|
|
public string TextContent { get; set; }
|
|
public IDictionary<string, object> MetaData { get; set; }
|
|
}
|
|
}
|