Files
Wino-Mail/Wino.Core.Domain/Models/Printing/PrintInformation.cs
2025-02-16 11:54:23 +01:00

16 lines
423 B
C#

using System;
namespace Wino.Core.Domain.Models.Printing;
public class PrintInformation
{
public PrintInformation(string pDFFilePath, string pDFTitle)
{
PDFFilePath = pDFFilePath ?? throw new ArgumentNullException(nameof(pDFFilePath));
PDFTitle = pDFTitle ?? throw new ArgumentNullException(nameof(pDFTitle));
}
public string PDFFilePath { get; }
public string PDFTitle { get; }
}