Skip to content

Commit

Permalink
Update CarInfoModel
Browse files Browse the repository at this point in the history
  • Loading branch information
SSchulze1989 committed Oct 25, 2023
1 parent a870dae commit 06aac87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public sealed class EventCarInfoModel
{
[DataMember]
public int Number { get; set; }
public string Number { get; set; } = string.Empty;
[DataMember]
public string Car { get; set; } = string.Empty;
[DataMember]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class ResultRowModel
/// Car number in the session
/// </summary>
[DataMember]
public string CarNumber { get; set; }
public string CarNumber { get; set; } = string.Empty;
/// <summary>
/// Class id in the session (in multiclass sessions)
/// </summary>
Expand Down
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.7</Version>
<Version>0.10.0-dev.8</Version>
<Authors>Simon Schulze</Authors>
<Company>Simon Schulze</Company>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down

0 comments on commit 06aac87

Please sign in to comment.