Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit aca13fd

Browse files
author
Not Officer
committed
added 'DisplayRarity' and 'SetText'
1 parent c7c8c98 commit aca13fd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Fortnite-API/Objects/BrCosmetic.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)