main
|
Last change
on this file since a6e33d1 was b373fea, checked in by kikisrbinoska <srbinoskakristina07@…>, 13 days ago |
|
Fixes for authentication and auhtorization\
|
-
Property mode
set to
100644
|
|
File size:
287 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,
|
|---|
| [b373fea] | 11 | int? WordCount,
|
|---|
| 12 | int CallerId = 0
|
|---|
| [877c13c] | 13 | ) : IRequest<UpdateResponse>;
|
|---|
| 14 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.