using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PCRobot.Pack { public class ServerFriendMsg:ServerWechatMsg { public string Ad_V1 { get; set; } public string Ad_V2 { get; set; } public string Remark { get; set; } /// /// 消息命令 /// public new PCRobotCMD Cmd { get; set; } = PCRobotCMD.agreeFriend; } public class ClientFriendMsg : WechatReceiveMsg { public string Ad_V1 { get; set; } public string Ad_V2 { get; set; } public string Remark { get; set; } /// /// 消息命令 /// public new PCRobotCMD Cmd { get; set; } = PCRobotCMD.friendRequest; } }