using Models.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SamplePre.Models { public class SopDataInfo { public sys_standard sysStandard { get; set; } = new sys_standard(); public List sysStandActions { get; set; } = new List(); public List sysStandardActionParms { get; set; } = new List(); } }