using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImNotifyTask { public ImNotifyTask() { ImNotifyTaskAlertObjs = new HashSet(); ImNotifyTaskPhones = new HashSet(); } public string TaskId { get; set; } = null!; public string AlertType { get; set; } = null!; public string TaskDesc { get; set; } = null!; public virtual TbNotifyTask Task { get; set; } = null!; public virtual ICollection ImNotifyTaskAlertObjs { get; set; } public virtual ICollection ImNotifyTaskPhones { get; set; } } }