using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutoCheckSMS { /// /// 内容模板 /// 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; } } }