18 lines
368 B
C#
18 lines
368 B
C#
using SamplePre.Models.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SamplePre.Models.Ext
|
|
{
|
|
public class sample_exec_ext : sample_exec
|
|
{
|
|
public string standradName { get; set; }
|
|
|
|
|
|
public List<sample_exec_detail> sampleExecDetails { get; set; }
|
|
}
|
|
}
|