13 lines
302 B
C#
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; }
|
|
} |