3900-MyRecipes-backup / Shared / LikeInfoResponseDto.cs
LikeInfoResponseDto.cs
Raw
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyRecipes2.Shared
{
    public class LikeInfoResponseDto
    {
        public int NLikes { get; set; }

        public bool UserHasLikedRecipe { get; set; }
    }
}