15 lines
320 B
C#
15 lines
320 B
C#
using Blazor.IndexedDB;
|
|
using Microsoft.JSInterop;
|
|
|
|
namespace DBTest.DB
|
|
{
|
|
public class ArtikelDB : IndexedDb
|
|
{
|
|
public ArtikelDB(JSRuntime jSRuntime, string name, int version) : base(jSRuntime, name, version)
|
|
{
|
|
}
|
|
|
|
public IndexedSet<Artikel> ArtikelListe { get; set; }
|
|
}
|
|
}
|