-
Notifications
You must be signed in to change notification settings - Fork 8
/
StringConstants.cs
30 lines (20 loc) · 1.01 KB
/
StringConstants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
Copyright 2020 Cognizant
Copyright 2021 Microsoft Corporation
*/
namespace OCPPCentralSystem.Models
{
public class StringConstants
{
public static string NotImplemented = "NotImplmented";
public static string RequiredProtocol = "ocpp1.6";
public static string NoProtocolHeaderMessage = "No sub-protocol header";
public static string SubProtocolNotSupportedMessage = "Sub-protocol not supported";
public static string ClientInitiatedNewWebsocketMessage = "Client sent new websocket request";
public static string ChargerNewWebRequestMessage = "New websocket request received for this charger";
public static string RequestContentFormat = "application/json";
public static string StationChargerTag = "StationChargerId";
public static string ClientRequestedClosureMessage = "Client requested closure";
public static string DateTimeFormat = "yyyy-MM-ddTHH:mm:ss.fffZ";
}
}