using System; using System.Collections.Generic; #nullable disable namespace Ropin.Inspection.Model.Entities { public partial class TaskInfoDto { public string jobId { get; set; } public string jobName { get; set; } public string jobGroup { get; set; } public string triggerId { get; set; } public string triggerName { get; set; } public string triggerGroup { get; set; } public string triggerStatus { get; set; } public Guid? TasksQzId { get; set; } public virtual TasksQz TasksQz { get; set; } } }