This repository was archived by the owner on Oct 31, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,13 @@ public class BrCosmetic : IEquatable<BrCosmetic>
1212 [ J ( "type" ) ] public BrCosmeticType Type { get ; private set ; }
1313 [ J ( "backendType" ) ] public string BackendType { get ; private set ; }
1414 [ J ( "rarity" ) ] public BrCosmeticRarity Rarity { get ; private set ; }
15+ [ J ( "displayRarity" ) ] public string DisplayRarity { get ; private set ; }
1516 [ J ( "backendRarity" ) ] public string BackendRarity { get ; private set ; }
1617 [ J ( "name" ) ] public string Name { get ; private set ; }
1718 [ J ( "shortDescription" ) ] public string ShortDescription { get ; private set ; }
1819 [ J ( "description" ) ] public string Description { get ; private set ; }
1920 [ J ( "set" ) ] public string Set { get ; private set ; }
21+ [ J ( "setText" ) ] public string SetText { get ; private set ; }
2022 [ J ( "series" ) ] public string Series { get ; private set ; }
2123 [ J ( "backendSeries" ) ] public string BackendSeries { get ; private set ; }
2224 [ J ( "images" ) ] public BrCosmeticImages Images { get ; private set ; }
@@ -31,6 +33,7 @@ public class BrCosmetic : IEquatable<BrCosmetic>
3133 [ J ( "added" ) ] public DateTime Added { get ; private set ; }
3234
3335 [ I ] public bool HasSet => Set != null ;
36+ [ I ] public bool HasSetText => SetText != null ;
3437 [ I ] public bool HasSeries => Series != null ;
3538 [ I ] public bool HasDisplayAssetPath => DisplayAssetPath != null ;
3639 [ I ] public bool HasDefinition => Definition != null ;
You can’t perform that action at this time.
0 commit comments