-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKeyedTopicCollection.cs
28 lines (24 loc) · 1.42 KB
/
KeyedTopicCollection.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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
namespace OnTopic.Collections {
/*============================================================================================================================
| CLASS: KEYED TOPIC COLLECTION
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Represents a collection of <see cref="Topic"/> objects.
/// </summary>
public class KeyedTopicCollection : KeyedTopicCollection<Topic> {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new instance of the <see cref="KeyedTopicCollection{T}"/>.
/// </summary>
/// <param name="topics">Seeds the collection with an optional list of topic references.</param>
public KeyedTopicCollection(IEnumerable<Topic>? topics = null) : base(topics) {
}
} //Class
} //Namespace