MeiSaiSiXieTongApi/MyCode.Project.Domain/Businesses/WorkProcess/MemberUpgradeNotificationTemplate.cs
2025-04-24 18:31:27 +08:00

25 lines
609 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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