Files
CyberBloomBackend/CyberBoom/DbContext/Dtos/Reaction/PostReactionDto.cs

10 lines
181 B
C#

public class PostReactionDto
{
public string QuestionId { get; set; } = null!;
public string UserId { get; set; } = null!;
public bool IsLike { get; set; } = true;
}