1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 08:13:33 +00:00
Files
server/src/Core/Models/Mail/MailMessage.cs
2019-03-13 16:19:00 -04:00

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; }
}
}