20 lines
397 B
C#
20 lines
397 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace SamplePre.Models.Models
|
|||
|
|
{
|
|||
|
|
public class CurrentSopProgress
|
|||
|
|
{
|
|||
|
|
public string sopName { get; set; }
|
|||
|
|
|
|||
|
|
public string sampleName { get; set; }
|
|||
|
|
|
|||
|
|
public string actionName { get; set; }
|
|||
|
|
|
|||
|
|
public float CurrentPercent { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|