16 lines
436 B
C#
16 lines
436 B
C#
using Oqtane.Shared;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class Resource
|
|
{
|
|
public ResourceType ResourceType { get; set; }
|
|
public string Url { get; set; }
|
|
public string Integrity { get; set; }
|
|
public string CrossOrigin { get; set; }
|
|
public string Bundle { get; set; }
|
|
public ResourceDeclaration Declaration { get; set; }
|
|
public ResourceLocation Location { get; set; }
|
|
}
|
|
}
|