mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-19 21:44:16 -04:00
10 lines
228 B
C#
10 lines
228 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Email;
|
|
|
|
public sealed record SendToDto
|
|
{
|
|
public string DestinationEmail { get; set; } = default!;
|
|
public IEnumerable<string> FilePaths { get; set; } = default!;
|
|
}
|