mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
15 lines
411 B
C#
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; }
|
|
} |