37 lines
823 B
C#
37 lines
823 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// 消息命令
|
|
/// </summary>
|
|
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; }
|
|
|
|
/// <summary>
|
|
/// 消息命令
|
|
/// </summary>
|
|
public new PCRobotCMD Cmd { get; set; } = PCRobotCMD.friendRequest;
|
|
}
|
|
}
|