mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
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; }
|
|
}
|
|
}
|