2024-04-18 01:44:37 +02:00
|
|
|
|
using MimeKit;
|
|
|
|
|
|
|
2024-07-21 05:45:02 +02:00
|
|
|
|
namespace Wino.Domain.Models.MailItem
|
2024-04-18 01:44:37 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Encapsulates MimeMessage and the path to the file.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public record MimeMessageInformation(MimeMessage MimeMessage, string Path);
|
|
|
|
|
|
}
|