1
0
mirror of https://github.com/bitwarden/server synced 2026-01-02 00:23:40 +00:00
Files
server/src/Core/Models/Mail/MailMessage.cs
2017-05-30 17:19:46 -04:00

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