3900-MyRecipes-backup / Server / Models / Comment.cs
Comment.cs
Raw
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;

namespace MyRecipes2.Server.Models
{
    public class Comment
    {
        public int Id { get; set; }

        public string Text { get; set; }

        public Recipe Recipe { get; set; }

        public DateTime CreatedDateTime { get; set; }

        public ApplicationUser CreatedBy { get; set; }
    }
}