-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Core] Implemented trpc.qq_new_tech.status_svc.StatusService.Register
- Loading branch information
1 parent
78f9d9e
commit 3117859
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using KonataNT.Proto; | ||
|
||
#pragma warning disable CS8618 | ||
|
||
namespace KonataNT.Core.Packet.Login; | ||
|
||
[ProtoContract] | ||
internal partial class Tlv543 | ||
{ | ||
[ProtoMember(9)] public Tlv543Layer1 Layer1 { get; set; } | ||
} | ||
|
||
[ProtoContract] | ||
internal partial class Tlv543Layer1 | ||
{ | ||
[ProtoMember(11)] public Tlv543Layer2 Layer2 { get; set; } | ||
} | ||
|
||
[ProtoContract] | ||
internal partial class Tlv543Layer2 | ||
{ | ||
[ProtoMember(1)] public string Uid { get; set; } | ||
} |