Implemented /Home/Location table and delete action

This commit is contained in:
2025-10-10 09:35:53 +02:00
parent 432a28271b
commit 1e13ea11d7
6 changed files with 67 additions and 37 deletions

View File

@@ -0,0 +1,5 @@
namespace Berufsschule_HAM.Models;
public class LocationsIndexViewModel
{
public required IEnumerable<LocationTableViewModel> LocationTableViewModels { get; set; }
}