移动系统liao
2024-07-30 35a617123c0d578772d9f4450bf27d3b52277384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
    }
}