using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model
|
{
|
public class GenerateCodeEntity
|
{
|
public string RuleCode { get; set; }
|
public string[] Args { get; set; } = { };
|
}
|
|
public class VerifyCodeEntity
|
{
|
public string Code { get; set; }
|
public string RuleCode { get; set; }
|
public int? RuleType { get; set; }
|
}
|
}
|