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; } } }