Creating our own types because we don't want to reference CDF

This commit is contained in:
Elitsa Marinovska
2020-03-17 10:17:53 +01:00
parent be753754a4
commit 0df497fd95
5 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Umbraco.Core.Assets
{
/// <summary>
/// Represents a JS asset file
/// </summary>
public class JavascriptFile : AssetFile
{
public JavascriptFile(string filePath)
: base(AssetType.Javascript)
{
FilePath = filePath;
}
}
}