|
@@ -11,18 +11,22 @@ namespace FirmwareHeaderBuilder.Model.ModelNaming
|
|
|
|
|
|
public static MajorType AP = new MajorType("AP", "Ac EVse Pedestal");
|
|
|
|
|
|
+ public static MajorType AX = new MajorType("AX", "Ac EVse Wallmount excellent type");
|
|
|
+
|
|
|
public static MajorType DW = new MajorType("DW", "Dc EVse Wallmount");
|
|
|
|
|
|
public static MajorType DS = new MajorType("DS", "Dc EVse Standalone");
|
|
|
|
|
|
public static MajorType DM = new MajorType("DM", "Dc EVse Moveable");
|
|
|
|
|
|
- public static MajorType DP = new MajorType("DP", "Dc EVse Pedestal");
|
|
|
+ public static MajorType DR = new MajorType("DR", "Dc EVse Power Rack (without cabinet)");
|
|
|
|
|
|
public static MajorType DD = new MajorType("DD", "Dc EVse Dispenser");
|
|
|
|
|
|
public static MajorType DO = new MajorType("DO", "Dc EVse Output power cabinet");
|
|
|
|
|
|
+ public static MajorType DQ = new MajorType("DQ", "Dc EVse infy 30KW GB module");
|
|
|
+
|
|
|
/// <summary>取得代碼。</summary>
|
|
|
public string Code { get; set; }
|
|
|
/// <summary>取得名稱。</summary>
|
|
@@ -44,12 +48,14 @@ namespace FirmwareHeaderBuilder.Model.ModelNaming
|
|
|
yield return AC;
|
|
|
yield return AW;
|
|
|
yield return AP;
|
|
|
+ yield return AX;
|
|
|
yield return DW;
|
|
|
yield return DS;
|
|
|
yield return DM;
|
|
|
- yield return DP;
|
|
|
+ yield return DR;
|
|
|
yield return DD;
|
|
|
yield return DO;
|
|
|
+ yield return DQ;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -60,12 +66,14 @@ namespace FirmwareHeaderBuilder.Model.ModelNaming
|
|
|
yield return AC.Name;
|
|
|
yield return AW.Name;
|
|
|
yield return AP.Name;
|
|
|
+ yield return AX.Name;
|
|
|
yield return DW.Name;
|
|
|
yield return DS.Name;
|
|
|
yield return DM.Name;
|
|
|
- yield return DP.Name;
|
|
|
+ yield return DR.Name;
|
|
|
yield return DD.Name;
|
|
|
yield return DO.Name;
|
|
|
+ yield return DQ.Name;
|
|
|
}
|
|
|
}
|
|
|
|