FileNameAttribute.cs 259 B

1234567891011121314
  1. using System;
  2. namespace QuestPDF.Examples.Engine
  3. {
  4. public class FileNameAttribute : Attribute
  5. {
  6. public string FileName { get; }
  7. public FileNameAttribute(string fileName)
  8. {
  9. FileName = fileName;
  10. }
  11. }
  12. }