Skip to content

Commit

Permalink
Allow multiple members per car
Browse files Browse the repository at this point in the history
  • Loading branch information
SSchulze1989 committed Oct 23, 2023
1 parent a2c7389 commit 724d57f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public sealed class EventCarInfoModel
[DataMember]
public string Class { get; set; } = string.Empty;
[DataMember]
public MemberInfoModel? Member { get; set; }
public IEnumerable<MemberInfoModel> Members { get; set; } = Array.Empty<MemberInfoModel>();
[DataMember]
public TeamInfoModel? Team { get; set; }
}
2 changes: 1 addition & 1 deletion src/iRLeagueApiCore.Common/iRLeagueApiCore.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PackageId>iRLeagueApiCore.Common</PackageId>
<Version>0.10.0-dev.5</Version>
<Version>0.10.0-dev.6</Version>
<Authors>Simon Schulze</Authors>
<Company>Simon Schulze</Company>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down

0 comments on commit 724d57f

Please sign in to comment.