2024-04-18 01:44:37 +02:00
|
|
|
|
using MimeKit;
|
|
|
|
|
|
|
2025-02-16 11:35:43 +01:00
|
|
|
|
namespace Wino.Core.Domain.Models.MailItem;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Encapsulates MimeMessage and the path to the file.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public record MimeMessageInformation(MimeMessage MimeMessage, string Path);
|