feature: add blazor app

This commit is contained in:
2025-04-30 00:34:47 +02:00
parent c65e6ac140
commit 57e5119985
33 changed files with 774 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace FahrzeugDatenBank;
public class FahrzeugDTO
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Typ { get; set; }
}