This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

14 lines
323 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; }
}
}