Documents: fix WinziPrint args

This commit is contained in:
2023-10-19 22:45:31 +02:00
parent 8ce4911317
commit e52475a4bf
3 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@ namespace Elwig.Helpers {
public sealed class TempFile : IDisposable {
private int Usages = 0;
public string FilePath { get; private set; }
public string FileName => Path.GetFileName(FilePath);
public TempFile() : this(null) { }