banking-bot/BankingBot/ScriptManagement/ScriptBundles.cs
2017-02-10 19:58:10 +00:00

12 lines
271 B
C#

namespace BankingBot.ScriptManagement
{
public static class ScriptBundles
{
public static string[] ProviderLogin => new[]
{
"jquery-3.1.1.min.js",
"global.js",
"helpers/account-helpers.js"
};
}
}