Files
Wino-Mail/Wino.Core.Domain/Models/Printing/PrintInformation.cs

16 lines
423 B
C#
Raw Normal View History

using System;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Models.Printing;
public class PrintInformation
{
2025-02-16 11:54:23 +01:00
public PrintInformation(string pDFFilePath, string pDFTitle)
{
2025-02-16 11:54:23 +01:00
PDFFilePath = pDFFilePath ?? throw new ArgumentNullException(nameof(pDFFilePath));
PDFTitle = pDFTitle ?? throw new ArgumentNullException(nameof(pDFTitle));
}
2025-02-16 11:54:23 +01:00
public string PDFFilePath { get; }
public string PDFTitle { get; }
}