image style added. (#433)

* image style added.

* JSInteropConstants added

* JSInteropConstants
This commit is contained in:
Shady Nagy
2020-07-27 16:07:15 +02:00
committed by GitHub
parent 688064199d
commit 40214cc6e0
4 changed files with 22 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BlazorAdmin.JavaScript
{
public static class JSInteropConstants
{
public static string DeleteCookie => "deleteCookie";
public static string GetCookie => "getCookie";
public static string RouteOutside => "routeOutside";
}
}