Skip to content

Commit a3b2110

Browse files
author
Justin
committed
Added static attributes to Dota 2 schema
1 parent 7d10773 commit a3b2110

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/Steam.Models/DOTA2/SchemaItemModel.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,7 @@ public class SchemaItemModel
4040
public IList<string> UsedByHeroes { get; set; }
4141

4242
public IList<string> BundledItems { get; set; }
43+
44+
public IList<SchemaItemStaticAttributeModel> StaticAttributes { get; set; }
4345
}
4446
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace Steam.Models.DOTA2
2+
{
3+
public class SchemaItemStaticAttributeModel
4+
{
5+
public string Class { get; set; }
6+
public string Value { get; set; }
7+
}
8+
}

0 commit comments

Comments
 (0)