WeixinNews.cs 342 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.Weixin.SDK.Entities
  6. {
  7. public class WeixinNews
  8. {
  9. public string title { set; get; }
  10. public string description { set; get; }
  11. public string picurl { set; get; }
  12. public string url { set; get; }
  13. }
  14. }