Dear_Sheng
2021-07-12 6d426c9e7fbea7b31307a8923e0eef89800f39c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace AutoCheckSMS
{
    /// <summary>
    /// 内容模板
    /// </summary>
    public class A_template
    {
        private int _id;
        private string _template;//模板内容
        private int _matchType;//0-通配符类型,1-正则类型
 
        public string Template { get => _template; set => _template = value; }
        public int Id { get => _id; set => _id = value; }
        public int MatchType { get => _matchType; set => _matchType = value; }
    }
}