Browse Source
Merge pull request #16509 from abpframework/liangshiwei/patch
Update Tutorials document
pull/16514/head
maliming
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
docs/en/Tutorials/Part-8.md
-
docs/zh-Hans/Tutorials/Part-8.md
|
|
|
@ -102,7 +102,7 @@ namespace Acme.BookStore.Authors; |
|
|
|
|
|
|
|
public class GetAuthorListDto : PagedAndSortedResultRequestDto |
|
|
|
{ |
|
|
|
public string Filter { get; set; } |
|
|
|
public string? Filter { get; set; } |
|
|
|
} |
|
|
|
```` |
|
|
|
|
|
|
|
|
|
|
|
@ -107,7 +107,7 @@ namespace Acme.BookStore.Authors |
|
|
|
{ |
|
|
|
public class GetAuthorListDto : PagedAndSortedResultRequestDto |
|
|
|
{ |
|
|
|
public string Filter { get; set; } |
|
|
|
public string? Filter { get; set; } |
|
|
|
} |
|
|
|
} |
|
|
|
```` |
|
|
|
|