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,13 @@

namespace FahrzeugDatenBank
{
public class KettenSaege : IAuftankbar
{
private bool istAufgetankt = false;
public void Auftanken()
{
this.istAufgetankt = true;
}
}
}