You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
369 B
C#

using System;
namespace Haoliang.Models.Template
{
public class DataProcessingRule
{
public int RuleId { get; set; }
public string RuleName { get; set; }
public string RuleType { get; set; }
public string Expression { get; set; }
public bool IsActive { get; set; }
public DateTime CreatedAt { get; set; }
}
}