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

main
Last change on this file since e882b92 was e882b92, checked in by kikisrbinoska <srbinoskakristina07@…>, 13 days ago

Added corrected entitef from the ER diagram and changes for the logic to be coresponding to the ddl

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