Skip to content
Snippets Groups Projects
MessageCreateDto.cs 410 B
Newer Older
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; }

        public string Content { get; set; }
esantangelo's avatar
esantangelo committed

        [JsonIgnore]
        public int TenantId { get; set; }