using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImNotifyTaskAlertObj { public string Id { get; set; } = null!; public string TaskId { get; set; } = null!; public string? AlertObjId { get; set; } public string? AlertObjName { get; set; } public virtual ImNotifyTask Task { get; set; } = null!; } }