@@ -68,30 +68,36 @@ public ICollection<StandardColumn> Store
68
68
/// </summary>
69
69
public ICollection < DataColumn > AdditionalDataColumns { get ; set ; }
70
70
71
- /// Options for the Exception column.
71
+ /// <summary>
72
+ /// Options for the Id column.
72
73
/// </summary>
73
- public ExceptionColumnOptions Exception { get ; set ; }
74
+ public IdColumnOptions Id { get ; private set ; }
74
75
75
76
/// <summary>
76
- /// Options for the MessageTemplate column.
77
+ /// Options for the Level column.
77
78
/// </summary>
78
- public MessageTemplateColumnOptions MessageTemplate { get ; set ; }
79
+ public LevelColumnOptions Level { get ; private set ; }
79
80
80
81
/// <summary>
81
- /// Options for the Message column.
82
+ /// Options for the Properties column.
82
83
/// </summary>
83
- public MessageColumnOptions Message { get ; set ; }
84
+ public PropertiesColumnOptions Properties { get ; private set ; }
84
85
85
86
/// <summary>
86
- /// Options for the Level column.
87
+ /// Options for the Exception column.
87
88
/// </summary>
88
- public LevelColumnOptions Level { get ; private set ; }
89
+ public ExceptionColumnOptions Exception { get ; set ; }
89
90
90
91
/// <summary>
91
- /// Options for the Properties column.
92
+ /// Options for the MessageTemplate column.
92
93
/// </summary>
93
- public PropertiesColumnOptions Properties { get ; private set ; }
94
+ public MessageTemplateColumnOptions MessageTemplate { get ; set ; }
94
95
96
+ /// <summary>
97
+ /// Options for the Message column.
98
+ /// </summary>
99
+ public MessageColumnOptions Message { get ; set ; }
100
+
95
101
/// <summary>
96
102
/// Options for the TimeStamp column.
97
103
/// </summary>
@@ -105,13 +111,7 @@ public ICollection<StandardColumn> Store
105
111
/// <summary>
106
112
/// Options for the Id column.
107
113
/// </summary>
108
- public class IdColumnOptions
109
- {
110
- /// <summary>
111
- /// The name of the Id column. "Id" is used if not set.
112
- /// </summary>
113
- public string ColumnName { get ; set ; }
114
- }
114
+ public class IdColumnOptions : CommonColumnOptions { }
115
115
116
116
/// <summary>
117
117
/// Options for the Level column.
0 commit comments