2024-07-16 14:56:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2024-07-16 23:28:57 +02:00
|
|
|
|
namespace Wino.Messages.Client.Mails
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When mail save as PDF requested.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public record SaveAsPDFRequested(string FileSavePath);
|
|
|
|
|
|
}
|