Files

14 lines
259 B
C#
Raw Permalink Normal View History

2021-01-16 01:31:39 +01:00
using System;
namespace QuestPDF.Examples.Engine
{
public class FileNameAttribute : Attribute
{
public string FileName { get; }
public FileNameAttribute(string fileName)
{
FileName = fileName;
}
}
}