-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [W3C-93] New race win icons * use test db
- Loading branch information
1 parent
6f1cdab
commit 0f54e92
Showing
7 changed files
with
143 additions
and
52 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
16 changes: 16 additions & 0 deletions
16
W3ChampionsStatisticService/PersonalSettings/AvatarCategoryToMaxPictureId.cs
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,16 @@ | ||
using W3C.Domain.CommonValueObjects; | ||
|
||
namespace W3ChampionsStatisticService.PersonalSettings | ||
{ | ||
public class AvatarCategoryToMaxPictureId | ||
{ | ||
public AvatarCategory AvatarType { get; } | ||
public long Max { get; } | ||
|
||
public AvatarCategoryToMaxPictureId(AvatarCategory avatarType, long max) | ||
{ | ||
AvatarType = avatarType; | ||
Max = max; | ||
} | ||
} | ||
} |
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
8 changes: 5 additions & 3 deletions
8
W3ChampionsStatisticService/PersonalSettings/ProfilePicture.cs
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
16 changes: 0 additions & 16 deletions
16
W3ChampionsStatisticService/PersonalSettings/RaceToMaxPicture.cs
This file was deleted.
Oops, something went wrong.
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