forked from CyberBloom/CyberBloomBackend
10 lines
181 B
C#
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;
|
|
}
|