source: ChapterX.Application/Story/Commands/UpdateRequest.cs@ a6e33d1

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

Fixed writer section and admin management

  • Property mode set to 100644
File size: 242 bytes
RevLine 
[877c13c]1using MediatR;
2
3namespace ChapterX.Application.Story.Commands
4{
[99c1e45]5 public record UpdateRequest(int Id, bool MatureContent, string Title, string ShortDescription, string? Image, string Content, int CallerId = 0) : IRequest<UpdateResponse>;
[877c13c]6}
Note: See TracBrowser for help on using the repository browser.