source: ChapterX.Application/Story/Commands/DeleteRequest.cs@ 3ae4bab

main
Last change on this file since 3ae4bab was 99c1e45, checked in by kikisrbinoska <srbinoskakristina07@…>, 12 days ago

Fixed writer section and admin management

  • Property mode set to 100644
File size: 170 bytes
Line 
1using MediatR;
2
3namespace ChapterX.Application.Story.Commands
4{
5 public record DeleteRequest(int Id, int CallerId, bool IsAdmin = false) : IRequest<DeleteResponse>;
6}
Note: See TracBrowser for help on using the repository browser.