CarTrackingRuleEngine/RuleEngine/Models/WarningType.cs

18 lines
429 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
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; }
}
}