using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace CoreCms.Net.Model
|
{
|
public class TmpMsgModel
|
{
|
public string OpenId { get; set; }
|
public string TemplateId { get; set; }
|
public string First { get; set; }
|
public string Keyword1 { get; set; } = string.Empty;
|
|
public string Keyword2 { get; set; } = string.Empty;
|
public string Keyword3 { get; set; } = string.Empty;
|
public string Keyword4 { get; set; } = string.Empty;
|
public string Keyword5 { get; set; } = string.Empty;
|
public string Keyword6 { get; set; } = string.Empty;
|
public string Keyword7 { get; set; } = string.Empty;
|
public string Keyword8 { get; set; } = string.Empty;
|
public string Keyword9 { get; set; } = string.Empty;
|
public string Keyword10 { get; set; } = string.Empty;
|
public string Remark { get; set; } = string.Empty;
|
public string Url { get; set; } = string.Empty;
|
}
|
}
|