mirror of
https://github.com/LANCommander/BlazorMarkdownEditor.git
synced 2026-08-01 02:10:35 -04:00
16 lines
558 B
C#
16 lines
558 B
C#
|
|
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";
|
|||
|
|
}
|
|||
|
|
}
|