-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathConstants.cs
29 lines (26 loc) · 1004 Bytes
/
Constants.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
/********************************************************
* *
* Copyright (C) Microsoft. All rights reserved. *
* *
*********************************************************/
namespace Microsoft.Partner.CSP.Api.V1.Samples
{
public class Constants
{
// Constants for Scenarios -- Starts here
public const int ALL_SCENARIOS = 0;
public const int SCENARIO_ONE = 1;
public const int SCENARIO_TWO = 2;
public const int SCENARIO_THREE = 3;
public const int SCENARIO_FOUR = 4;
public const int SCENARIO_FIVE = 5;
public const int SCENARIO_SIX = 6;
public const int SCENARIO_SEVEN = 7;
public const int SCENARIO_EIGHT = 8;
public const int SCENARIO_NINE = 9;
public const int SCENARIO_TEN = 10;
// Ends Here
// The greatest valid entry for scenario. Used to validate the scenario entry.
public const int MAX_SCENARIO = 10;
}
}