MessageQueueHi.cs 870 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Database.Database;
  4. public partial class MessageQueueHi
  5. {
  6. public int Id { get; set; }
  7. public bool? MessageType { get; set; }
  8. public string Recipient { get; set; } = null!;
  9. public string? Subject { get; set; }
  10. public string? Content { get; set; }
  11. public string? TemplateCode { get; set; }
  12. public string? TemplateData { get; set; }
  13. public bool? Priority { get; set; }
  14. public bool? Status { get; set; }
  15. public DateTime? ScheduledAt { get; set; }
  16. public DateTime? ProcessedAt { get; set; }
  17. public byte? RetryCount { get; set; }
  18. public byte? MaxRetry { get; set; }
  19. public string? ErrorMessage { get; set; }
  20. public int? CreatedBy { get; set; }
  21. public DateTime? CreatedDate { get; set; }
  22. public DateTime? MovedDate { get; set; }
  23. }