2024-11-09 19:18:06 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Core.Domain.Models.Printing;
|
|
|
|
|
|
|
|
|
|
|
|
public class PrintInformation
|
2024-11-09 19:18:06 +01:00
|
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
|
public PrintInformation(string pDFFilePath, string pDFTitle)
|
2024-11-09 19:18:06 +01:00
|
|
|
|
{
|
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:43:30 +01:00
|
|
|
|
}
|
2025-02-16 11:54:23 +01:00
|
|
|
|
|
|
|
|
|
|
public string PDFFilePath { get; }
|
|
|
|
|
|
public string PDFTitle { get; }
|
2024-11-09 19:18:06 +01:00
|
|
|
|
}
|