Skip to content
Snippets Groups Projects
PostMessagePreviewDto.cs 418 B
Newer Older
esantangelo's avatar
esantangelo committed
using System;
using System.Collections.Generic;
using System.Text;

namespace Tsi1.BusinessLayer.Dtos
{
    public class PostMessagePreviewDto
    {
        public int Id { get; set; }

        public string Content { get; set; }

        public DateTime Date { get; set; }

        public int UserId { get; set; }

        public int PostId { get; set; }

        public string CompleteName { get; set; }

esantangelo's avatar
esantangelo committed
    }
}