12 lines
277 B
C#
12 lines
277 B
C#
using Microsoft.Extensions.Caching.Distributed;
|
|
|
|
namespace EnvelopeGenerator.Extensions
|
|
{
|
|
public static class CacheExtensions
|
|
{
|
|
public static IDistributedCache Cache(this IDistributedCache cache)
|
|
{
|
|
cache.SetStringAsync()
|
|
}
|
|
}
|
|
} |