1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ModelExam
- {
- partial class User
- {
- public string Id_Post;
- public string idpost
- {
- get { return Id_Post; }
- set
- {
- Id_Post = value;
- }
- }
- }
- partial class Usersmetrics
- {
- public string User_metric;
- public string usermetrics
- {
- get { return User_metric; }
- set
- {
- User_metric = value;
- }
- }
- public string Metric;
- public string metrics
- {
- get { return Metric; }
- set
- {
- Metric = value;
- }
- }
- }
- }
|