diff --git a/.vs/CFBSharp/FileContentIndex/3ff10642-95e3-4b07-92b8-ace2e6ef9337.vsidx b/.vs/CFBSharp/FileContentIndex/3ff10642-95e3-4b07-92b8-ace2e6ef9337.vsidx new file mode 100644 index 00000000..535f9f8b Binary files /dev/null and b/.vs/CFBSharp/FileContentIndex/3ff10642-95e3-4b07-92b8-ace2e6ef9337.vsidx differ diff --git a/.vs/CFBSharp/FileContentIndex/read.lock b/.vs/CFBSharp/FileContentIndex/read.lock new file mode 100644 index 00000000..e69de29b diff --git a/src/CFBSharp/Model/PlayerGameTeams.cs b/src/CFBSharp/Model/PlayerGameTeams.cs index b320221d..36fc0fba 100644 --- a/src/CFBSharp/Model/PlayerGameTeams.cs +++ b/src/CFBSharp/Model/PlayerGameTeams.cs @@ -32,12 +32,14 @@ public partial class PlayerGameTeams : IEquatable /// Initializes a new instance of the class. /// /// school. + /// conference. /// homeAway. /// points. /// categories. - public PlayerGameTeams(PlayerGameSchool school = default(PlayerGameSchool), bool? homeAway = default(bool?), int? points = default(int?), List categories = default(List)) + public PlayerGameTeams(string school = default(string), string conference = default(string),string homeAway = default(string), int? points = default(int?), List categories = default(List)) { this.School = school; + this.Conference = conference; this.HomeAway = homeAway; this.Points = points; this.Categories = categories; @@ -47,13 +49,19 @@ public partial class PlayerGameTeams : IEquatable /// Gets or Sets School /// [DataMember(Name="school", EmitDefaultValue=false)] - public PlayerGameSchool School { get; set; } + public string School { get; set; } + + /// + /// Gets or Sets Conference + /// + [DataMember(Name="conference", EmitDefaultValue=false)] + public string Conference { get; set; } /// /// Gets or Sets HomeAway /// [DataMember(Name="homeAway", EmitDefaultValue=false)] - public bool? HomeAway { get; set; } + public string HomeAway { get; set; } /// /// Gets or Sets Points @@ -76,6 +84,7 @@ public override string ToString() var sb = new StringBuilder(); sb.Append("class PlayerGameTeams {\n"); sb.Append(" School: ").Append(School).Append("\n"); + sb.Append(" Conference: ").Append(Conference).Append("\n"); sb.Append(" HomeAway: ").Append(HomeAway).Append("\n"); sb.Append(" Points: ").Append(Points).Append("\n"); sb.Append(" Categories: ").Append(Categories).Append("\n"); @@ -117,7 +126,12 @@ public bool Equals(PlayerGameTeams input) this.School == input.School || (this.School != null && this.School.Equals(input.School)) - ) && + ) && + ( + this.Conference == input.Conference || + (this.Conference != null && + this.Conference.Equals(input.Conference)) + ) && ( this.HomeAway == input.HomeAway || (this.HomeAway != null && @@ -146,6 +160,8 @@ public override int GetHashCode() int hashCode = 41; if (this.School != null) hashCode = hashCode * 59 + this.School.GetHashCode(); + if (this.Conference != null) + hashCode = hashCode * 59 + this.Conference.GetHashCode(); if (this.HomeAway != null) hashCode = hashCode * 59 + this.HomeAway.GetHashCode(); if (this.Points != null)