Model.cs 817 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ModelExam
  7. {
  8. partial class User
  9. {
  10. public string Id_Post;
  11. public string idpost
  12. {
  13. get { return Id_Post; }
  14. set
  15. {
  16. Id_Post = value;
  17. }
  18. }
  19. }
  20. partial class Usersmetrics
  21. {
  22. public string User_metric;
  23. public string usermetrics
  24. {
  25. get { return User_metric; }
  26. set
  27. {
  28. User_metric = value;
  29. }
  30. }
  31. public string Metric;
  32. public string metrics
  33. {
  34. get { return Metric; }
  35. set
  36. {
  37. Metric = value;
  38. }
  39. }
  40. }
  41. }