2020-03-17 10:17:53 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Assets
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents a JS asset file
|
|
|
|
|
|
/// </summary>
|
2020-03-17 15:36:38 +01:00
|
|
|
|
public class JavaScriptFile : AssetFile
|
2020-03-17 10:17:53 +01:00
|
|
|
|
{
|
2020-03-17 15:36:38 +01:00
|
|
|
|
public JavaScriptFile(string filePath)
|
2020-03-17 10:17:53 +01:00
|
|
|
|
: base(AssetType.Javascript)
|
|
|
|
|
|
{
|
|
|
|
|
|
FilePath = filePath;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|