Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Framework.Themes;
///
/// Represents a theme context
///
public partial interface IThemeContext
{
///
/// Get current theme system name
///
/// A task that represents the asynchronous operation
Task GetWorkingThemeNameAsync();
///
/// Set current theme system name
///
/// A task that represents the asynchronous operation
Task SetWorkingThemeNameAsync(string workingThemeName);
}