source:
ChapterX.Application/Chapter/Commands/UpdateRequest.cs@
e294f7d
| Last change on this file since e294f7d was 877c13c, checked in by , 4 months ago | |
|---|---|
|
|
| File size: 261 bytes | |
| Rev | Line | |
|---|---|---|
| [877c13c] | 1 | using MediatR; |
| 2 | ||
| 3 | namespace ChapterX.Application.Chapter.Commands | |
| 4 | { | |
| 5 | public record UpdateRequest( | |
| 6 | int Id, | |
| 7 | int Number, | |
| 8 | string Name, | |
| 9 | string Title, | |
| 10 | string Content, | |
| 11 | int? WordCount | |
| 12 | ) : IRequest<UpdateResponse>; | |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.
