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

namespace MyRecipes2.Shared
{
    public class CreateCommentRequestDto 
    {
        public string Text { get; set; }

        public int RecipeId { get; set; }

        public string CreatedById { get; set; }
    }
}