using System.Collections.Generic;
using System.Linq;
namespace IStation.Model
{
///
/// 电力价格设置
///
public class ElecPriceSetting : JsonModel
{
public ElecPriceSetting() { }
public ElecPriceSetting(ElecPriceSetting rhs)
{
this.MonthList = rhs.MonthList?.Select(x => new ElecPriceMonthSetting(x)).ToList();
}
///
/// 月份列表
///
public List MonthList { get; set; }
}
}