-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat (Rendering): renames item type to view type.
- Loading branch information
1 parent
19902ab
commit f5e78c7
Showing
3 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...p.Web/Options/RenderingItemTypeOptions.cs → ...p.Web/Options/RenderingViewTypeOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
namespace Rhythm.Drop.Web.Options; | ||
|
||
/// <summary> | ||
/// Configuration options for Rhythm Drop Rendering Item Types. | ||
/// Configuration options for Rhythm Drop Rendering View Types. | ||
/// </summary> | ||
public sealed class RenderingItemTypeOptions | ||
public sealed class RenderingViewTypeOptions | ||
{ | ||
/// <summary> | ||
/// Gets or sets the item type name for Modals. | ||
/// Gets or sets the view type name for Modals. | ||
/// </summary> | ||
public string Components { get; set; } = "Components"; | ||
|
||
/// <summary> | ||
/// Gets or sets the item type name for Subcomponents. | ||
/// Gets or sets the view type name for Subcomponents. | ||
/// </summary> | ||
public string Subcomponents { get; set; } = "Subcomponents"; | ||
|
||
/// <summary> | ||
/// Gets or sets the item type name for Modals. | ||
/// Gets or sets the view type name for Modals. | ||
/// </summary> | ||
public string Modals { get; set; } = "Modals"; | ||
} |