C00225155-02/C00225155/MegaRobo.C00225155/Common/FunctionModels/ISamplingModel.cs

74 lines
1.7 KiB
C#
Raw Permalink Normal View History

2026-04-13 09:12:49 +00:00
using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Models
{
///// <summary>
///// 取样接口
///// </summary>
//public interface ISamplingModel
//{
// double Height { get; set; }
//}
///// <summary>
///// 穿刺取样模型
///// </summary>
//[Serializable]
//public class PunctureSamplingModel : ObservableObject, ISamplingModel
//{
// private double height;
// /// <summary>
// /// 取样高度
// /// </summary>
// public double Height
// {
// get { return height; }
// set { SetProperty(ref height, value); }
// }
//}
///// <summary>
///// 开盖取样模型
///// </summary>
//[Serializable]
//public class OpenLidSamplingModel : ObservableObject, ISamplingModel
//{
// private double intervalTime;
// /// <summary>
// /// 取样间隔时间单位min
// /// </summary>
// public double IntervalTime
// {
// get { return intervalTime; }
// set { SetProperty(ref intervalTime, value); }
// }
// private double height;
// /// <summary>
// /// 取样高度
// /// </summary>
// public double Height
// {
// get { return height; }
// set { SetProperty(ref height, value); }
// }
// private int count;
// /// <summary>
// /// 取样次数
// /// </summary>
// public int Count
// {
// get { return count; }
// set { SetProperty(ref count, value); }
// }
//}
}