14 lines
259 B
C#
14 lines
259 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace QuestPDF.Examples.Engine
|
||
|
|
{
|
||
|
|
public class FileNameAttribute : Attribute
|
||
|
|
{
|
||
|
|
public string FileName { get; }
|
||
|
|
|
||
|
|
public FileNameAttribute(string fileName)
|
||
|
|
{
|
||
|
|
FileName = fileName;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|