using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IBox.WinFrmUI
|
{
|
public class WaterUtensilModel
|
{
|
public string Name { get; set; }
|
|
public int Count { get; set; }
|
|
public float RatedFlow { get; set; }
|
|
public float MinRatedFlow { get; set; }
|
}
|
}
|