Files
webwindowconfigurator/Test.UI/Components/Pages/Aedifica.razor.cs
T
2025-08-06 14:44:59 +02:00

13 lines
270 B
C#

namespace Test.UI.Components.Pages
{
public partial class Aedifica
{
protected string currText = "...";
private async Task SaveText(string newText)
{
currText = newText;
await Task.Delay(100);
}
}
}