using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 能效业务区域分析上下文项
///
public class EtaLogicAreaAnalyContextItem: EtaAnalyContextLogicBaseItem
{
///
///
///
///
public EtaLogicAreaAnalyContextItem(IStation.Model.LogicArea logicArea)
{
this.ID = logicArea.ID;
this.Name = logicArea.Name;
this.TagName = logicArea.TagName;
this.UseStatus = logicArea.UseStatus;
}
}
}