Skip to content

Commit ac254a4

Browse files
committed
More properties for AccountDto
1 parent 5eb0518 commit ac254a4

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

GeometryDashAPI/GeometryDashAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<RepositoryUrl>https://github.com/Folleach/GeometryDashAPI</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>api, geometry, dash</PackageTags>
14-
<PackageVersion>0.1.13</PackageVersion>
14+
<PackageVersion>0.1.14</PackageVersion>
1515
<LangVersion>9</LangVersion>
1616
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1717
</PropertyGroup>

GeometryDashAPI/Server/Dtos/AccountDto.cs

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,43 @@ public class AccountDto : GameObject
66
[GameProperty("2")] public int UserId { get; set; }
77
[GameProperty("3")] public int Starts { get; set; }
88
[GameProperty("4")] public int Demons { get; set; }
9+
[GameProperty("6")] public int Rank { get; set; }
10+
[GameProperty("7")] public int Highlight { get; }
911
[GameProperty("8")] public int CreatorPoints { get; set; }
12+
[GameProperty("9")] public int IconPrev { get; set; }
1013
[GameProperty("10")] public int Color1 { get; set; }
1114
[GameProperty("11")] public int Color2 { get; set; }
15+
[GameProperty("13")] public int SecretCoins { get; set; }
16+
[GameProperty("14")] public int IconType { get; set; }
17+
[GameProperty("15")] public int Special { get; set; }
18+
[GameProperty("16")] public int AccountId { get; set; }
19+
[GameProperty("17")] public int UserCoins { get; set; }
20+
[GameProperty("18")] public int MessageState { get; set; }
21+
[GameProperty("19")] public int FriendsState { get; set; }
1222
[GameProperty("20")] public string YouTubeId { get; set; }
1323
[GameProperty("21")] public int CubeId { get; set; }
1424
[GameProperty("22")] public int ShipId { get; set; }
25+
[GameProperty("23")] public int BallId { get; set; }
26+
[GameProperty("24")] public int BirdId { get; set; }
27+
[GameProperty("25")] public int WaveId { get; set; }
28+
[GameProperty("26")] public int RobotId { get; set; }
29+
[GameProperty("27")] public int StreakId { get; set; }
30+
[GameProperty("28")] public int GlowId { get; set; }
31+
[GameProperty("29")] public bool IsRegistered { get; set; }
32+
[GameProperty("30")] public int GlobalRank { get; set; }
33+
[GameProperty("31")] public int UsFriendState { get; set; }
34+
[GameProperty("38")] public int Messages { get; set; }
35+
[GameProperty("39")] public int FriendRequests { get; set; }
36+
[GameProperty("40")] public bool NewFriends { get; set; }
37+
[GameProperty("41")] public int NewFriendRequests { get; set; }
38+
[GameProperty("42")] public int TimeSinceSubmittedLevel { get; set; }
39+
[GameProperty("43")] public int SpiderId { get; set; }
1540
[GameProperty("44")] public string TwitterId { get; set; }
1641
[GameProperty("45")] public string TwitchId { get; set; }
42+
[GameProperty("46")] public int Diamonds { get; set; }
43+
[GameProperty("48")] public int ExplosionId { get; set; }
44+
[GameProperty("49")] public int Moderator { get; set; }
45+
[GameProperty("50")] public int CommentHistoryState { get; set; }
1746

1847
public override string GetParserSense() => ":";
1948
}

0 commit comments

Comments
 (0)