Files
SamplePreSystem-CS/SamplePre.Models/Models/CurrentSopProgress.cs

20 lines
397 B
C#
Raw Normal View History

2026-05-09 17:49:46 +08:00
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; }
}
}