using System;
using System.Collections.Generic;
public class Program
{
public enum EnvironmentScope
Production,
Development,
}
public enum DataObtainerType
/// <summary>
/// Aria self controlled data obtainer
/// </summary>
AriaSelfControlled = 4,
/// Native event hub obtainer
EventHub = 5,
/// Event grid with event hub
EventGridWithEventHub = 6,
/// Combined mds event hub obtainer
CombinedMdsEventHub = 7,
public static void Main()
Console.Write(Enum.IsDefined(typeof(EnvironmentScope), "1"));