using System; using System.Collections.Generic; #nullable disable namespace Teso_API.Models { public partial class CommentsPost { public string PostId { get; set; } public string Comment { get; set; } public string CommenterId { get; set; } public DateTime? Timestamp { get; set; } public string CommentId { get; set; } } }