using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ISupply.WinFrmUI.Epanet
{
internal class SystemType
{
///
/// id
///
public long Id { get; set; }
///
/// 系统标识
///
public long SystemId { get; set; }
///
/// 系统名称
///
public string Name { get; set; }
///
/// 状态
///
public int State { get; set; }
///
/// 备注
///
public string Description { get; set; }
}
}