-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathITopicBindingModel.cs
24 lines (20 loc) · 1.17 KB
/
ITopicBindingModel.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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Mapping.Reverse;
namespace OnTopic.Models {
/*============================================================================================================================
| INTERFACE: TOPIC BINDING MODEL
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides a generic data transfer topic for binding form values to controller actions.
/// </summary>
/// <remarks>
/// It is strictly required that topic binding models implement the <see cref="ITopicBindingModel"/> interface for the
/// default <see cref="ReverseTopicMappingService"/> to correctly identify and map a binding model to a <see cref="Topic"/>.
/// </remarks>
public interface ITopicBindingModel: ICoreTopicViewModel {
} //Class
} //Namespace