using Business.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.ResourceExamineManagement.Dto { public class PoActionListDto { public List poMain { get; set; } = new List(); public List polist { get; set; } = new List(); public List mopoMain { get; set; } = new List(); public List mopolist { get; set; } = new List(); public List mopoOccupiesList { get; set; } = new List(); public List poOccupiesList { get; set; } = new List(); public List poMasterList { get; set; } = new List(); public List poDetailList { get; set; } = new List(); } }