Files
DanhengServer-OpenSource/GameServer/Server/Packet/Send/Others/PacketGetSecretKeyInfoScRsp.cs
2024-03-31 17:06:46 +08:00

20 lines
534 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.SecretInfo.Add(new SecretKeyInfo()
{
Type = SecretKeyType.SecretKeyVideo,
Key = "10120425825329403",
});
SetData(proto);
}
}
}