@@ -24,7 +24,9 @@ public class AccountClient : BaseEndpointClient, IAccountClient
24
24
private readonly IAccountHomeClient home ;
25
25
private readonly IAccountInventoryClient inventory ;
26
26
private readonly IAccountLegendaryArmoryClient legendaryArmory ;
27
+ #pragma warning disable CS0618 // Type or member is obsolete
27
28
private readonly IAccountLuckClient luck ;
29
+ #pragma warning restore CS0618 // Type or member is obsolete
28
30
private readonly IAccountMailCarriersClient mailCarriers ;
29
31
private readonly IAccountMapChestsClient mapChests ;
30
32
private readonly IAccountMasteriesClient masteries ;
@@ -34,6 +36,7 @@ public class AccountClient : BaseEndpointClient, IAccountClient
34
36
private readonly IAccountMountsClient mounts ;
35
37
private readonly IAccountNoveltiesClient novelties ;
36
38
private readonly IAccountOutfitsClient outfits ;
39
+ private readonly IAccountProgressionClient progression ;
37
40
private readonly IAccountPvpClient pvp ;
38
41
private readonly IAccountRaidsClient raids ;
39
42
private readonly IAccountRecipesClient recipes ;
@@ -63,7 +66,9 @@ protected internal AccountClient(IConnection connection, IGw2Client gw2Client) :
63
66
this . home = new AccountHomeClient ( connection , gw2Client ) ;
64
67
this . inventory = new AccountInventoryClient ( connection , gw2Client ) ;
65
68
this . legendaryArmory = new AccountLegendaryArmoryClient ( connection , gw2Client ) ;
69
+ #pragma warning disable CS0618 // Type or member is obsolete
66
70
this . luck = new AccountLuckClient ( connection , gw2Client ) ;
71
+ #pragma warning restore CS0618 // Type or member is obsolete
67
72
this . mailCarriers = new AccountMailCarriersClient ( connection , gw2Client ) ;
68
73
this . mapChests = new AccountMapChestsClient ( connection , gw2Client ) ;
69
74
this . masteries = new AccountMasteriesClient ( connection , gw2Client ) ;
@@ -73,6 +78,7 @@ protected internal AccountClient(IConnection connection, IGw2Client gw2Client) :
73
78
this . mounts = new AccountMountsClient ( connection , gw2Client ) ;
74
79
this . novelties = new AccountNoveltiesClient ( connection , gw2Client ) ;
75
80
this . outfits = new AccountOutfitsClient ( connection , gw2Client ) ;
81
+ this . progression = new AccountProgressionClient ( connection , gw2Client ) ;
76
82
this . pvp = new AccountPvpClient ( connection , gw2Client ) ;
77
83
this . raids = new AccountRaidsClient ( connection , gw2Client ) ;
78
84
this . recipes = new AccountRecipesClient ( connection , gw2Client ) ;
@@ -119,6 +125,7 @@ protected internal AccountClient(IConnection connection, IGw2Client gw2Client) :
119
125
public virtual IAccountLegendaryArmoryClient LegendaryArmory => this . legendaryArmory ;
120
126
121
127
/// <inheritdoc />
128
+ [ Obsolete ( "Deprecated since 2021-09-28. Use Account.Progression instead. This will be removed from Gw2Sharp starting from version 2.0." ) ]
122
129
public virtual IAccountLuckClient Luck => this . luck ;
123
130
124
131
/// <inheritdoc />
@@ -151,6 +158,9 @@ protected internal AccountClient(IConnection connection, IGw2Client gw2Client) :
151
158
/// <inheritdoc />
152
159
public virtual IAccountPvpClient Pvp => this . pvp ;
153
160
161
+ /// <inheritdoc />
162
+ public virtual IAccountProgressionClient Progression => this . progression ;
163
+
154
164
/// <inheritdoc />
155
165
public virtual IAccountRaidsClient Raids => this . raids ;
156
166
0 commit comments