123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Xml.Linq;
- namespace WeiXin.Library.Messages
- {
-
-
-
- public class Message : ITemplate
- {
-
-
-
- public string FromUserName { get; set; }
-
-
-
- public string ToUserName { get; set; }
-
-
-
- public string MsgType { get; protected set; }
-
-
-
- public string CreateTime { get; set; }
-
-
-
- public virtual string Template
- {
- get { throw new NotImplementedException(); }
- }
-
-
-
- public Message()
- { }
-
-
-
-
- public virtual string GenerateContent()
- {
- throw new NotImplementedException();
- }
- }
- }
|