@@ -17,6 +17,8 @@ public class ColumnOptions
17
17
/// </summary>
18
18
public ColumnOptions ( )
19
19
{
20
+ Id = new IdColumnOptions ( ) ;
21
+
20
22
Level = new LevelColumnOptions ( ) ;
21
23
22
24
Properties = new PropertiesColumnOptions ( ) ;
@@ -67,30 +69,35 @@ public ICollection<StandardColumn> Store
67
69
public ICollection < DataColumn > AdditionalDataColumns { get ; set ; }
68
70
69
71
/// <summary>
70
- /// Options for the Exception column.
72
+ /// Options for the Id column.
71
73
/// </summary>
72
- public ExceptionColumnOptions Exception { get ; set ; }
74
+ public IdColumnOptions Id { get ; private set ; }
73
75
74
76
/// <summary>
75
- /// Options for the MessageTemplate column.
77
+ /// Options for the Level column.
76
78
/// </summary>
77
- public MessageTemplateColumnOptions MessageTemplate { get ; set ; }
79
+ public LevelColumnOptions Level { get ; private set ; }
78
80
79
81
/// <summary>
80
- /// Options for the Message column.
82
+ /// Options for the Properties column.
81
83
/// </summary>
82
- public MessageColumnOptions Message { get ; set ; }
84
+ public PropertiesColumnOptions Properties { get ; private set ; }
83
85
84
86
/// <summary>
85
- /// Options for the Level column.
87
+ /// Options for the Exception column.
86
88
/// </summary>
87
- public LevelColumnOptions Level { get ; private set ; }
89
+ public ExceptionColumnOptions Exception { get ; set ; }
88
90
89
91
/// <summary>
90
- /// Options for the Properties column.
92
+ /// Options for the MessageTemplate column.
91
93
/// </summary>
92
- public PropertiesColumnOptions Properties { get ; private set ; }
94
+ public MessageTemplateColumnOptions MessageTemplate { get ; set ; }
93
95
96
+ /// <summary>
97
+ /// Options for the Message column.
98
+ /// </summary>
99
+ public MessageColumnOptions Message { get ; set ; }
100
+
94
101
/// <summary>
95
102
/// Options for the TimeStamp column.
96
103
/// </summary>
@@ -101,6 +108,11 @@ public ICollection<StandardColumn> Store
101
108
/// </summary>
102
109
public LogEventColumnOptions LogEvent { get ; private set ; }
103
110
111
+ /// <summary>
112
+ /// Options for the Id column.
113
+ /// </summary>
114
+ public class IdColumnOptions : CommonColumnOptions { }
115
+
104
116
/// <summary>
105
117
/// Options for the Level column.
106
118
/// </summary>
0 commit comments