old_flsystem/应用/CouponsSend/ReceiveMsg.cs

27 lines
595 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
using CouponsSend.Entitys;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CouponsSend
{
public class ReceiveMsg : EventArgs
{
public Group Group { get; set; }
public string Message { get; set; }
public string GetImg(string imgCode)
{
return "http://qun.qq.com/cgi/svr/chatimg/get?pic=" + imgCode;
}
public ReceiveMsg(Group group, string Message)
{
this.Group = group;
this.Message = Message;
}
}
}