17 lines
352 B
C#
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"
|
|
};
|
|
}
|
|
}
|