using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Businesses.WorkProcess
{
///
/// 微信 - 会员升级通知
///
public class MemberUpgradeNotificationTemplate : NotificationTemplateBase
{
///
/// 用户名
///
public string Name { get; set; }
///
/// 升级时间。格式化:yyyy年MM月dd日 HH:mm
///
public DateTime UpgradeTime { get; set; }
}
}