blob: aaeab73949d38dc1208467762da481d5c9c5334a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace DevHive.Services.Models.Post.Rating
{
public class CreateRatingServiceModel
{
public Guid UserId { get; set; }
public Guid PostId { get; set; }
public bool IsLike { get; set; }
}
}
|