source: ChapterX.Application/Story/Commands/DeleteRequest.cs

main
Last change on this file was 99c1e45, checked in by kikisrbinoska <srbinoskakristina07@…>, 11 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.