mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
20 lines
541 B
C#
20 lines
541 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.Server.Packet.Send.Others
|
|
{
|
|
public class PacketGetSecretKeyInfoScRsp : BasePacket
|
|
{
|
|
public PacketGetSecretKeyInfoScRsp() : base(CmdIds.GetSecretKeyInfoScRsp)
|
|
{
|
|
var proto = new GetSecretKeyInfoScRsp();
|
|
proto.MCPPMIAFDBE.Add(new DGAKGPPBJIG()
|
|
{
|
|
Type = SecretKeyType.SecretKeyVideo,
|
|
FFBANANOHPB = "10120425825329403",
|
|
});
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|
|
}
|