mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
476 B
C#
18 lines
476 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);
|
|
}
|
|
} |