-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathICoreTopicViewModel.cs
59 lines (54 loc) · 3.09 KB
/
ICoreTopicViewModel.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
49
50
51
52
53
54
55
56
57
58
59
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using System.Collections.ObjectModel;
using System.ComponentModel.DataAnnotations;
using OnTopic.Mapping;
using OnTopic.Metadata;
namespace OnTopic.Models {
/*============================================================================================================================
| INTERFACE: CORE TOPIC VIEW MODEL
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Ensures that a model maintains, at minimum, a <see cref="Key"/> and <see cref="ContentType"/> property, which are
/// expected of all <see cref="Topic"/>s.
/// </summary>
/// <remarks>
/// <para>
/// This is necessary to support e.g. a <see cref="KeyedCollection{TKey, TValue}"/>, while also allowing it to filter by
/// <see cref="ContentType"/>—a common requirement for topic (view model) collections.
/// </para>
/// <para>
/// It is not required that topic view models implement the <see cref="ICoreTopicViewModel"/> interface for the <see cref=
/// "TopicMappingService"/> to correctly identify and map <see cref="Topic"/>s to topic view models. That said, the
/// interface does ensure that those view models can be keyed, which is useful for, especially, child collections.
/// </para>
/// </remarks>
public interface ICoreTopicViewModel {
/*==========================================================================================================================
| PROPERTY: KEY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Gets the topic's <see cref="Key"/> attribute, the primary text identifier for the <see cref="Topic"/>.
/// </summary>
/// <requires description="The value from the getter must not be null." exception="T:System.ArgumentNullException">
/// value is not null
/// </requires>
[Required, NotNull, DisallowNull]
string? Key { get; init; }
/*==========================================================================================================================
| PROPERTY: CONTENT TYPE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Gets the key name of the content type that the current topic represents.
/// </summary>
/// <remarks>
/// Each topic is associated with a content type. The content type determines which attributes are displayed in the Topics
/// Editor (via the <see cref="ContentTypeDescriptor.AttributeDescriptors"/> property).
/// </remarks>
[Required, NotNull, DisallowNull]
string? ContentType { get; init; }
} //Class
} //Namespace