Files
mapo-core/MP.Prog/Components/ArchiveEdit.razor.cs
T
Samuele Locatelli ea2f942f94 PROG:
- Inizio modifiche
- porting bootstrap + fontawesome
- inizio editingdirectory
2024-10-21 11:32:50 +02:00

24 lines
445 B
C#

using Microsoft.AspNetCore.Components;
using MP.FileData.DatabaseModels;
using System.Threading.Tasks;
namespace MP.Prog.Components
{
public partial class ArchiveEdit
{
[Parameter]
public MacchinaModel CurrRec { get; set; }
protected async void DoCancel()
{
await Task.Delay(1);
}
protected async void DoSave()
{
await Task.Delay(1);
}
}
}