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

namespace MyRecipes2.Shared
{
    public class CommentDto
    {
        public string Text { get; set; }
        public string User { get; set; }
        public string Time { get; set; }
    }
}