-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAssociatedTopicBindingModel.cs
37 lines (33 loc) · 2.06 KB
/
AssociatedTopicBindingModel.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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Mapping.Reverse;
namespace OnTopic.ViewModels.BindingModels {
/*============================================================================================================================
| BINDING MODEL: ASSOCIATED TOPIC
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides a model for binding an association of a <see cref="ITopicBindingModel"/> to another <see cref="Topic"/>.
/// </summary>
/// <remarks>
/// While implementors may choose to create a custom <see cref="IAssociatedTopicBindingModel"/> implementation, the out-of-
/// the-box <see cref="AssociatedTopicBindingModel"/> implementation satisfies all of the requirements of the <see cref="
/// ReverseTopicMappingService"/>. The only reason to implement a custom definition is if the caller needs additional
/// metadata for separate validation or processing.
/// </remarks>
public record AssociatedTopicBindingModel : IAssociatedTopicBindingModel {
/*==========================================================================================================================
| PROPERTY: UNIQUE KEY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Gets the topic's <see cref="UniqueKey"/> attribute, the unique text identifier for the topic.
/// </summary>
/// <requires description="The value from the getter must not be null." exception="T:System.ArgumentNullException">
/// value is not null
/// </requires>
[Required]
public string UniqueKey { get; init; } = default!;
} //Class
} //Namespace