banking-bot/BankingBot/ScriptManagement/ScriptBundles.cs
2017-02-10 14:32:29 +00:00

16 lines
311 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[]
{
"jquery-3.1.1.min"
};
}
}