Files
DS-Cristiano/BlogPlatform/BlogPlatform/DTO/Post/Request/UpdatePostDto.cs
2025-10-17 09:13:23 +02:00

13 lines
302 B
C#

using BlogPlatform.DTO.Comment.Response;
namespace BlogPlatform.DTO.Post.Request;
public class UpdatePostDto
{
public int Id { get; set; }
public string? Title { get; set; }
public string? Content { get; set; }
public int Likes { get; set; }
public int UserId { get; set; }
}