a bunch of stuff

This commit is contained in:
2026-04-22 20:09:26 -05:00
parent 5267701e32
commit fc7db1fedd
16 changed files with 697 additions and 362 deletions

View 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
}
}
}