ImNotifyTask.cs 762 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImNotifyTask
  6. {
  7. public ImNotifyTask()
  8. {
  9. ImNotifyTaskAlertObjs = new HashSet<ImNotifyTaskAlertObj>();
  10. ImNotifyTaskPhones = new HashSet<ImNotifyTaskPhone>();
  11. }
  12. public string TaskId { get; set; } = null!;
  13. public string AlertType { get; set; } = null!;
  14. public string TaskDesc { get; set; } = null!;
  15. public virtual TbNotifyTask Task { get; set; } = null!;
  16. public virtual ICollection<ImNotifyTaskAlertObj> ImNotifyTaskAlertObjs { get; set; }
  17. public virtual ICollection<ImNotifyTaskPhone> ImNotifyTaskPhones { get; set; }
  18. }
  19. }