15 lines
255 B
C#
15 lines
255 B
C#
|
using DnetIndexedDb;
|
|||
|
|
|||
|
using Microsoft.JSInterop;
|
|||
|
|
|||
|
namespace decePubClient.Services
|
|||
|
{
|
|||
|
public class IndexedDb : IndexedDbInterop
|
|||
|
{
|
|||
|
public IndexedDb(IJSRuntime jsRuntime, IndexedDbOptions<IndexedDb> options)
|
|||
|
: base(jsRuntime, options)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|