wzp
2021-06-08 85e2382799b60c823e3613256605fdde928b0fd6
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; }
    }
}