Skip to content

Commit 3b91ed8

Browse files
committed
Moved ShortTitle to the top of the PageTopicViewModel class
This is just an organizational change, and has no functional impact.
1 parent 1bf25be commit 3b91ed8

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

OnTopic.ViewModels/_contentTypes/PageTopicViewModel.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ namespace OnTopic.ViewModels {
2020
/// </remarks>
2121
public record PageTopicViewModel: TopicViewModel, INavigableTopicViewModel {
2222

23+
/*==========================================================================================================================
24+
| SHORT TITLE
25+
\-------------------------------------------------------------------------------------------------------------------------*/
26+
/// <summary>
27+
/// Provides a short title to be used in the navigation, for cases where the normal title is too long.
28+
/// </summary>
29+
public string? ShortTitle { get; init; }
30+
2331
/*==========================================================================================================================
2432
| SUBTITLE
2533
\-------------------------------------------------------------------------------------------------------------------------*/
@@ -56,14 +64,6 @@ public record PageTopicViewModel: TopicViewModel, INavigableTopicViewModel {
5664
/// </summary>
5765
public bool? NoIndex { get; init; }
5866

59-
/*==========================================================================================================================
60-
| SHORT TITLE
61-
\-------------------------------------------------------------------------------------------------------------------------*/
62-
/// <summary>
63-
/// Provides a short title to be used in the navigation, for cases where the normal title is too long.
64-
/// </summary>
65-
public string? ShortTitle { get; init; }
66-
6767
/*==========================================================================================================================
6868
| BODY
6969
\-------------------------------------------------------------------------------------------------------------------------*/

0 commit comments

Comments
 (0)