Skip to content

Commit a8ece0e

Browse files
committed
[add] model comments
1 parent 82650fc commit a8ece0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Simplify.Web/AsyncController{T}.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public abstract class AsyncController<T> : AsyncControllerBase
1515
private T _model;
1616

1717
/// <summary>
18-
/// Gets the model of current request.
18+
/// Gets the model (and reads it synchronously, if it is null) of a current request.
1919
/// </summary>
2020
/// <value>
2121
/// The current request model.

src/Simplify.Web/Controller{T}.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public abstract class Controller<T> : SyncControllerBase
1515
private T _model;
1616

1717
/// <summary>
18-
/// Gets the model of current request.
18+
/// Gets the model (and reads it synchronously, if it is null) of a current request.
1919
/// </summary>
2020
/// <value>
2121
/// The current request model.

0 commit comments

Comments
 (0)