a bunch of stuff
This commit is contained in:
17
Components/Pages/Book.razor.cs
Normal file
17
Components/Pages/Book.razor.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Microsoft.AspNetCore.Components.Forms;
|
||||
|
||||
namespace ApplianceRepair.Components.Pages
|
||||
{
|
||||
public partial class Book()
|
||||
{
|
||||
private RepairRequestModel Model = new();
|
||||
private List<IBrowserFile> SelectedFiles = new();
|
||||
|
||||
private void HandleFiles(InputFileChangeEventArgs e) => SelectedFiles.AddRange(e.GetMultipleFiles());
|
||||
|
||||
private async Task HandleSubmit()
|
||||
{
|
||||
// Logic to process the request
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user