banking-bot/BankingBot/ScriptManagement/ScriptBundles.cs
2017-02-10 15:03:44 +00:00

17 lines
352 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.ScriptManagement
{
public static class ScriptBundles
{
public static string[] Global => new[]
{
"scripts/jquery-3.1.1.min",
"scripts/global.js"
};
}
}