mirror of
https://github.com/bitwarden/server
synced 2025-12-16 08:13:33 +00:00
16 lines
482 B
C#
16 lines
482 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 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; }
|
|
}
|
|
}
|