19 lines
520 B
C#
19 lines
520 B
C#
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<sys_standard_action> sysStandActions { get; set; } = new List<sys_standard_action>();
|
|
|
|
public List<sys_standard_action_parm> sysStandardActionParms { get; set; } = new List<sys_standard_action_parm>();
|
|
}
|
|
}
|