using System;
using System.Collections.Generic;

namespace MySystem.Models2
{
    public partial class ProductCommentAgree
    {
        public int Id { get; set; }
        public int ProductCommentId { get; set; }
        public int UserId { get; set; }
    }
}