about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Classes/LocalStorageProviderService.cs
blob: 2a9082dded233389d8fb25404a4f036da4a652cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using Blazored.LocalStorage;
using MatrixRoomUtils.Core.Interfaces.Services;

namespace MatrixRoomUtils.Web.Classes; 

public class LocalStorageProviderService : IStorageProvider {
    public LocalStorageProviderService(ILocalStorageService localStorageService) {
        
    }
}