19 lines
457 B
C#
19 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace RuleEngine.Models
|
|
{
|
|
public partial class WarningSms
|
|
{
|
|
public int Id { get; set; }
|
|
public int? WarningId { get; set; }
|
|
public string Phone { get; set; }
|
|
public bool? IsSent { get; set; }
|
|
public string SmsContent { get; set; }
|
|
public DateTime? CreatedAt { get; set; }
|
|
public DateTime? SentAt { get; set; }
|
|
}
|
|
}
|