18 lines
429 B
C#
18 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace RuleEngine.Models
|
|
{
|
|
public partial class WarningType
|
|
{
|
|
public int Id { get; set; }
|
|
public string WarningName { get; set; }
|
|
public string Description { get; set; }
|
|
public int? WarningLevel { get; set; }
|
|
public bool? AllowSendEmail { get; set; }
|
|
public bool? AllowSendSms { get; set; }
|
|
}
|
|
}
|