Skip to content

Commit 0a3c37e

Browse files
committed
Merge remote-tracking branch 'origin/master' into develop
2 parents e95455c + 43cd42c commit 0a3c37e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Simplify.Web/Meta/ControllerMetaData.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ public ControllerMetaData(Type controllerType, ControllerExecParameters execPara
3535
/// <summary>
3636
/// Gets the controller execute parameters.
3737
/// </summary>
38-
public ControllerExecParameters ExecParameters { get; }
38+
public ControllerExecParameters? ExecParameters { get; }
3939

4040
/// <summary>
4141
/// Gets the controller role information.
4242
/// </summary>
43-
public ControllerRole Role { get; }
43+
public ControllerRole? Role { get; }
4444

4545
/// <summary>
4646
/// Gets the controller security information.
4747
/// </summary>
4848
/// <value>
4949
/// The controller security information.
5050
/// </value>
51-
public ControllerSecurity Security { get; }
51+
public ControllerSecurity? Security { get; }
5252
}
5353
}

src/Simplify.Web/Meta/IControllerMetaData.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ public interface IControllerMetaData
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)