Kavita/API/DTOs/Email/SendToDto.cs
2025-05-04 07:14:44 -07:00

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