Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ResourceLocation.cs


namespace Nop.Web.Framework.UI;

/// 
/// Resource location
/// 
public enum ResourceLocation
{
    /// 
    /// Pinned to the declaring place but moves to the bundle if enabled.
    /// 
    Auto,
    /// 
    /// Pinned to the declaring place
    /// 
    None,
    /// 
    /// Header
    /// 
    Head,
    /// 
    /// Footer
    /// 
    Footer,
}