ProductCommentAgree.cs 270 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MainModels2
  4. {
  5. public partial class ProductCommentAgree
  6. {
  7. public int Id { get; set; }
  8. public int ProductCommentId { get; set; }
  9. public int UserId { get; set; }
  10. }
  11. }