16 lines
345 B
C#
16 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Deepleo.Weixin.SDK.Entities
|
|
{
|
|
public class WeixinNews
|
|
{
|
|
public string title { set; get; }
|
|
public string description { set; get; }
|
|
public string picurl { set; get; }
|
|
public string url { set; get; }
|
|
}
|
|
}
|