mirror of
https://github.com/bitwarden/server.git
synced 2026-02-13 04:13:42 +08: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; }
|
|||
|
|
}
|
|||
|
|
}
|