BlazorMarkdownEditor/PSC.Blazor.Components.MarkdownEditor/FilePath.cs

16 lines
558 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSC.Blazor.Components.MarkdownEditor
{
internal static class FilePath
{
internal static string MarkdownJs = "/_content/PSC.Blazor.Components.MarkdownEditor/js/markdownEditor.js";
internal static string EasyMDEJS = "/_content/PSC.Blazor.Components.MarkdownEditor/js/easymde.min.js";
internal static string EasyMDECSS = "/_content/PSC.Blazor.Components.MarkdownEditor/css/easymde.min.css";
}
}