Skip to content

Commit

Permalink
Use champseason to define ResultKind instead of ResultConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
SSchulze1989 committed Sep 10, 2023
1 parent 660a971 commit 89b8253
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 @@ -14,5 +14,7 @@ public class PutChampSeasonModel : PostChampSeasonModel
[DataMember]
public ResultConfigInfoModel? DefaultResultConfig { get; set; }
[DataMember]
public ResultKind ResultKind { get; set; }
[DataMember]
public ICollection<ResultFilterModel> Filters { get; set; } = new List<ResultFilterModel>();
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ public class PostResultConfigModel
[DataMember]
public string DisplayName { get; set; } = string.Empty;
[DataMember]
public ResultKind ResultKind { get; set; }
[DataMember]
public ResultConfigInfoModel? SourceResultConfig { get; set; }
[DataMember]
public int ResultsPerTeam { get; set; }
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.9.0</Version>
<Version>0.9.1-dev.1</Version>
<Authors>Simon Schulze</Authors>
<Company>Simon Schulze</Company>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down

0 comments on commit 89b8253

Please sign in to comment.