using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NEIntelligentControl2.Models.Station
{
///
/// 场站类型
///
public enum StationType
{
///
/// 其他
///
Other,
///
/// 风场
///
Wind,
///
/// 光伏
///
PV
}
}