-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayer.cs
73 lines (71 loc) · 2.82 KB
/
Player.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
using System;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
using Newtonsoft.Json;
namespace Mvc.Models
{
[Serializable()]
public class Player
{
[BsonId]
[JsonIgnore]
public ObjectId mongoId { get; set; }
public int id { get; set; }
public string photo { get; set; }
public string web_name { get; set; }
public int team_code { get; set; }
public string status { get; set; }
public int code { get; set; }
public string first_name { get; set; }
public string second_name { get; set; }
public int? squad_number { get; set; }
public string news { get; set; }
public int now_cost { get; set; }
public int? chance_of_playing_this_round { get; set; }
public int? chance_of_playing_next_round { get; set; }
public string value_form { get; set; }
public string value_season { get; set; }
public int cost_change_start { get; set; }
public int cost_change_event { get; set; }
public int cost_change_start_fall { get; set; }
public int cost_change_event_fall { get; set; }
public bool in_dreamteam { get; set; }
public int dreamteam_count { get; set; }
public string selected_by_percent { get; set; }
public string form { get; set; }
public int transfers_out { get; set; }
public int transfers_in { get; set; }
public int transfers_out_event { get; set; }
public int transfers_in_event { get; set; }
public int loans_in { get; set; }
public int loans_out { get; set; }
public int loaned_in { get; set; }
public int loaned_out { get; set; }
public int total_points { get; set; }
public int event_points { get; set; }
public string points_per_game { get; set; }
public string ep_this { get; set; }
public string ep_next { get; set; }
public bool special { get; set; }
public int minutes { get; set; }
public int goals_scored { get; set; }
public int assists { get; set; }
public int clean_sheets { get; set; }
public int goals_conceded { get; set; }
public int own_goals { get; set; }
public int penalties_saved { get; set; }
public int penalties_missed { get; set; }
public int yellow_cards { get; set; }
public int red_cards { get; set; }
public int saves { get; set; }
public int bonus { get; set; }
public int bps { get; set; }
public string influence { get; set; }
public string creativity { get; set; }
public string threat { get; set; }
public string ict_index { get; set; }
public int ea_index { get; set; }
public int element_type { get; set; }
public int team { get; set; }
}
}