// @nuget: CommandLineParser -Version 2.7.82
using System;
using System.Collections.Generic;
using CommandLine;
using System.Linq;
public class Program
{
public static void Main()
var type = EAgreementType.Open | EAgreementType.Entry;
Console.WriteLine(type);
var typeInt = (int)type;
Console.WriteLine(typeInt);
}
[Flags]
enum EAgreementType
Open = 1,
Entry = 2,
Dupa = 4,