25 lines
452 B
C#
25 lines
452 B
C#
|
|
namespace Nop.Web.Framework.UI;
|
|
|
|
/// <summary>
|
|
/// Resource location
|
|
/// </summary>
|
|
public enum ResourceLocation
|
|
{
|
|
/// <summary>
|
|
/// Pinned to the declaring place but moves to the bundle if enabled.
|
|
/// </summary>
|
|
Auto,
|
|
/// <summary>
|
|
/// Pinned to the declaring place
|
|
/// </summary>
|
|
None,
|
|
/// <summary>
|
|
/// Header
|
|
/// </summary>
|
|
Head,
|
|
/// <summary>
|
|
/// Footer
|
|
/// </summary>
|
|
Footer,
|
|
} |