-
Notifications
You must be signed in to change notification settings - Fork 43
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
b7723f9
commit 158b401
Showing
66 changed files
with
118 additions
and
92 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
5 changes: 4 additions & 1 deletion
5
...ls/DOTA2/HeroAbilitySpecialDetailModel.cs → ...DOTA2/Cleaned/HeroAbilitySpecialDetail.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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
namespace Steam.Models.DOTA2 | ||
{ | ||
public class HeroAbilitySpecialDetailModel | ||
public class HeroAbilitySpecialDetail | ||
{ | ||
public string Name { get; set; } | ||
|
||
public string Value { get; set; } | ||
|
||
public string RawName { get; set; } | ||
|
||
public string LinkedSpecialBonus { get; set; } | ||
} | ||
} |
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
6 changes: 5 additions & 1 deletion
6
src/Steam.Models/DOTA2/RarityModel.cs → src/Steam.Models/DOTA2/Cleaned/Rarity.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 |
---|---|---|
@@ -1,11 +1,15 @@ | ||
namespace Steam.Models.DOTA2 | ||
{ | ||
public class RarityModel | ||
public class Rarity | ||
{ | ||
public string Name { get; set; } | ||
|
||
public uint Id { get; set; } | ||
|
||
public uint Order { get; set; } | ||
|
||
public string Color { get; set; } | ||
|
||
public string LocalizedName { get; set; } | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 0 additions & 4 deletions
4
src/Steam.Models/DOTA2/DotaBlogFeedItem.cs → ...Models/DOTA2/External/DotaBlogFeedItem.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
File renamed without changes.
4 changes: 3 additions & 1 deletion
4
src/Steam.Models/DOTA2/HeroModel.cs → src/Steam.Models/DOTA2/External/Hero.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 |
---|---|---|
@@ -1,9 +1,11 @@ | ||
namespace Steam.Models.DOTA2 | ||
{ | ||
public class HeroModel | ||
public class Hero | ||
{ | ||
public uint Id { get; set; } | ||
|
||
public string Name { get; set; } | ||
|
||
public string LocalizedName { get; set; } | ||
} | ||
} |
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
5 changes: 4 additions & 1 deletion
5
...ls/DOTA2/AbilitySpecialSchemaItemModel.cs → ...dels/DOTA2/External/HeroAbilitySpecial.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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
namespace Steam.Models.DOTA2 | ||
{ | ||
public class AbilitySpecialSchemaItemModel | ||
public class HeroAbilitySpecial | ||
{ | ||
public string Name { get; set; } | ||
|
||
public string Value { get; set; } | ||
|
||
public string VarType { get; set; } | ||
|
||
public string LinkedSpecialBonus { get; set; } | ||
} | ||
} |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
public class HeroRoleModel | ||
{ | ||
public string Name { get; set; } | ||
|
||
public string Level { get; set; } | ||
} | ||
} |
File renamed without changes.
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,23 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Steam.Models.DOTA2 | ||
{ | ||
public class Schema | ||
{ | ||
public SchemaGameInfo GameInfo { get; set; } | ||
|
||
public IList<SchemaRarity> Rarities { get; set; } | ||
|
||
public IList<SchemaQuality> Qualities { get; set; } | ||
|
||
public IList<SchemaColor> Colors { get; set; } | ||
|
||
public IList<SchemaPrefab> Prefabs { get; set; } | ||
|
||
public IList<SchemaItem> Items { get; set; } | ||
|
||
public IList<SchemaItemSet> ItemSets { get; set; } | ||
|
||
public IList<SchemaItemAutograph> ItemAutographs { get; set; } | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/Steam.Models/DOTA2/SchemaColorModel.cs → ...team.Models/DOTA2/External/SchemaColor.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
2 changes: 1 addition & 1 deletion
2
...Steam.Models/DOTA2/SchemaGameInfoModel.cs → ...m.Models/DOTA2/External/SchemaGameInfo.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
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
2 changes: 1 addition & 1 deletion
2
....Models/DOTA2/SchemaItemAutographModel.cs → ...els/DOTA2/External/SchemaItemAutograph.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
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
2 changes: 1 addition & 1 deletion
2
...s/DOTA2/SchemaItemStaticAttributeModel.cs → ...TA2/External/SchemaItemStaticAttribute.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
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,7 @@ | ||
namespace Steam.Models.DOTA2 | ||
{ | ||
public class SchemaItemTool | ||
{ | ||
public SchemaItemToolUsage Usage { get; set; } | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
....Models/DOTA2/SchemaItemToolUsageModel.cs → ...els/DOTA2/External/SchemaItemToolUsage.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
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
2 changes: 1 addition & 1 deletion
2
...dels/DOTA2/SchemaPrefabCapabilityModel.cs → .../DOTA2/External/SchemaPrefabCapability.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
2 changes: 1 addition & 1 deletion
2
src/Steam.Models/DOTA2/SchemaQualityModel.cs → ...am.Models/DOTA2/External/SchemaQuality.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
2 changes: 1 addition & 1 deletion
2
src/Steam.Models/DOTA2/SchemaRarityModel.cs → ...eam.Models/DOTA2/External/SchemaRarity.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
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
File renamed without changes.
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
Oops, something went wrong.