13 lines
270 B
C#
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);
|
|
}
|
|
}
|
|
}
|