-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSectionTopicViewModel.cs
48 lines (42 loc) · 2.58 KB
/
SectionTopicViewModel.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
39
40
41
42
43
44
45
46
47
48
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
namespace OnTopic.ViewModels {
/*============================================================================================================================
| VIEW MODEL: SECTION TOPIC
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides a strongly-typed model for feeding views with information about a <c>Section</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 SectionTopicViewModel : TopicViewModel {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new <see cref="SectionTopicViewModel"/> with an <paramref name="attributes"/> dictionary.
/// </summary>
/// <param name="attributes">An <see cref="AttributeDictionary"/> of attribute values.</param>
public SectionTopicViewModel(AttributeDictionary attributes): base(attributes) {
Contract.Requires(attributes, nameof(attributes));
HeaderImageUrl = attributes.GetUri(nameof(HeaderImageUrl));
}
/// <summary>
/// Initializes a new <see cref="SectionTopicViewModel"/> with no parameters.
/// </summary>
public SectionTopicViewModel() { }
/*==========================================================================================================================
| HEADER IMAGE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides a header image which may be displayed at the top of a section.
/// </summary>
public Uri? HeaderImageUrl { get; init; }
} //Class
} //Namespace