CarTrackingRuleEngine/RuleEngine/Models/RecipientWarnCfg.cs

16 lines
404 B
C#

using System;
using System.Collections.Generic;
namespace RuleEngine.Models
{
public partial class RecipientWarnCfg
{
public int Id { get; set; }
public int? RecipientId { get; set; }
public int? WarningTypeId { get; set; }
public bool? IsSendSms { get; set; }
public bool? IsSendEmail { get; set; }
public bool? IsEnable { get; set; }
}
}