-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditorBindingModel.cs
More file actions
28 lines (24 loc) · 1.45 KB
/
EditorBindingModel.cs
File metadata and controls
28 lines (24 loc) · 1.45 KB
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
\=============================================================================================================================*/
using OnTopic.Editor.AspNetCore.Models.Collections;
namespace OnTopic.Editor.AspNetCore.Models {
/*============================================================================================================================
| CLASS: EDITOR BINDING MODEL
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Represents a model for retrieving data from the editor interface, primarily as a collection of <see cref="
/// AttributeBindingModel"/> instances, via the <see cref="Attributes"/> property.
/// </summary>
public record EditorBindingModel {
/*==========================================================================================================================
| ATTRIBUTES
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Collection of attribute values extracted from the post.
/// </summary>
public EditorAttributeCollection Attributes { get; } = new();
} // Class
} // Namespace