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

74 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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); }
// }
//}
}