mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
12 lines
443 B
TypeScript
12 lines
443 B
TypeScript
import { ScalarType } from "@protobuf-ts/runtime";
|
|
import { ProtoField } from "@napneko/nap-proto-core";
|
|
|
|
export const C2C = {
|
|
uin: ProtoField(1, ScalarType.UINT32, true),
|
|
uid: ProtoField(2, ScalarType.STRING, true),
|
|
field3: ProtoField(3, ScalarType.UINT32, true),
|
|
sig: ProtoField(4, ScalarType.UINT32, true),
|
|
receiverUin: ProtoField(5, ScalarType.UINT32, true),
|
|
receiverUid: ProtoField(6, ScalarType.STRING, true),
|
|
};
|