Kavita/Kavita.Email/DTOs/EmailOptionsDto.cs
2024-01-20 09:16:54 -08:00

15 lines
411 B
C#

using System.Collections.Generic;
namespace Skeleton.DTOs;
public class EmailOptionsDto
{
public IList<string> ToEmails { get; set; }
public string Subject { get; set; }
public string Body { get; set; }
public IList<KeyValuePair<string, string>> PlaceHolders { get; set; }
/// <summary>
/// Filenames to attach
/// </summary>
public IList<string> Attachments { get; set; }
}