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