blog3000/Blog3000/Client/Services/ImgCacheStorage.cs

17 lines
390 B
C#

using Microsoft.JSInterop;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Transactions;
namespace Blog3000.Client.Services
{
public class ImgCacheStorage : CacheStorage
{
public ImgCacheStorage(IJSRuntime j) : base(j) { }
protected override string GetCacheId() => "ImgCache";
}
}