-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIndexTopicViewModel.cs
38 lines (32 loc) · 2 KB
/
IndexTopicViewModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
namespace OnTopic.ViewModels {
/*============================================================================================================================
| VIEW MODEL: INDEX TOPIC
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides a strongly-typed model for feeding views with information about an <c>Index</c> topic.
/// </summary>
/// <remarks>
/// Typically, view models should be created as part of the presentation layer. The <see cref="Models"/> namespace contains
/// default implementations that can be used directly, used as base classes, or overwritten at the presentation level. They
/// are supplied for convenience to model factory default settings for out-of-the-box content types.
/// </remarks>
public record IndexTopicViewModel: PageTopicViewModel {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new <see cref="IndexTopicViewModel"/> with an <paramref name="attributes"/> dictionary.
/// </summary>
/// <param name="attributes">An <see cref="AttributeDictionary"/> of attribute values.</param>
public IndexTopicViewModel(AttributeDictionary attributes): base(attributes) { }
/// <summary>
/// Initializes a new <see cref="IndexTopicViewModel"/> with no parameters.
/// </summary>
public IndexTopicViewModel() { }
} //Class
} //Namespace