Skip to content

Commit

Permalink
Add docs for ThemeSelectorResult (OrchardCMS#11147)
Browse files Browse the repository at this point in the history
Co-authored-by: Dean Marcussen <dean.marcussen@gmail.com>
  • Loading branch information
2 people authored and urbanit committed Mar 18, 2024
1 parent 814b46c commit 2e90095
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
namespace OrchardCore.DisplayManagement.Theming
{
/// <summary>
/// Represents a result for a selected theme.
/// </summary>
public class ThemeSelectorResult
{
/// <summary>
/// Gets or sets the priority for the selected theme.
/// </summary>
public int Priority { get; set; }

/// <summary>
/// Gets or sets the theme name.
/// </summary>
/// <remarks>This is the theme identifier. By default this is also the theme name, but if a custom identifier has been specified, please use the identifier.</remarks>
public string ThemeName { get; set; }
}
}

0 comments on commit 2e90095

Please sign in to comment.