Files
egwcorelib/EgwCoreLib.BlazorTest/Pages/TestPdfViewer.razor.cs
T
2024-02-22 11:38:51 +01:00

19 lines
428 B
C#

namespace EgwCoreLib.BlazorTest.Pages
{
public partial class TestPdfViewer
{
protected string FileSel
{
get => fileSel;
set
{
if (fileSel != value)
{
fileSel = value;
StateHasChanged();
}
}
}
private string fileSel { get; set; } = "File01.pdf";
}
}