Skip to content
Snippets Groups Projects
Commit 15ddd664 authored by esantangelo's avatar esantangelo
Browse files

add JsonIgnore in MessageCreateDto

parent 836d9df2
No related branches found
No related tags found
1 merge request!3Feature/send message
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.Json.Serialization;
namespace Tsi1.BusinessLayer.Dtos
{
public class MessageCreateDto
{
[JsonIgnore]
public int SenderId { get; set; }
public int ReceiverId { get; set; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment