mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 17:33:11 +08:00
13 lines
405 B
C#
13 lines
405 B
C#
namespace Bit.Core.Models.Mail;
|
|
|
|
public class MailMessage
|
|
{
|
|
public string Subject { get; set; }
|
|
public IEnumerable<string> ToEmails { get; set; }
|
|
public IEnumerable<string> BccEmails { get; set; }
|
|
public string HtmlContent { get; set; }
|
|
public string TextContent { get; set; }
|
|
public string Category { get; set; }
|
|
public IDictionary<string, object> MetaData { get; set; }
|
|
}
|