-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e1d1e8
commit 6190e3c
Showing
17 changed files
with
376 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
|
||
namespace BeatSaberModManager.ViewModels | ||
{ | ||
/// <inheritdoc /> | ||
public class LegacyGameVersionsTab : ViewModelBase | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public LegacyGameVersionsTab(IGrouping<int, GameVersionViewModel> group, LegacyGameVersionsViewModel legacyGameVersionsViewModel) | ||
{ | ||
ArgumentNullException.ThrowIfNull(group); | ||
Year = group.Key; | ||
Versions = group.ToArray(); | ||
LegacyGameVersionsViewModel = legacyGameVersionsViewModel; | ||
} | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int Year { get; } | ||
|
||
/// <summary> | ||
/// TODO | ||
/// </summary> | ||
public IList<GameVersionViewModel> Versions { get; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public LegacyGameVersionsViewModel LegacyGameVersionsViewModel { get; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.