Skip to content

Commit a6828fd

Browse files
committed
Fields in IControllerMetaData now nullable
1 parent e377ee3 commit a6828fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Simplify.Web/Meta/IControllerMetaData.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ public interface IControllerMetaData
1313
/// <value>
1414
/// The type of the extension.
1515
/// </value>
16-
Type ControllerType { get; }
16+
Type? ControllerType { get; }
1717

1818
/// <summary>
1919
/// Gets the controller execute parameters.
2020
/// </summary>
21-
ControllerExecParameters ExecParameters { get; }
21+
ControllerExecParameters? ExecParameters { get; }
2222

2323
/// <summary>
2424
/// Gets the controller role information.
2525
/// </summary>
26-
ControllerRole Role { get; }
26+
ControllerRole? Role { get; }
2727

2828
/// <summary>
2929
/// Gets the controller security information.
3030
/// </summary>
3131
/// <value>
3232
/// The controller security information.
3333
/// </value>
34-
ControllerSecurity Security { get; }
34+
ControllerSecurity? Security { get; }
3535
}
3636
}

0 commit comments

Comments
 (0)