Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Last active March 24, 2025 18:40
Show Gist options
  • Save trikitrok/7b82577843ac293ee7a096326cb87b9e to your computer and use it in GitHub Desktop.
Save trikitrok/7b82577843ac293ee7a096326cb87b9e to your computer and use it in GitHub Desktop.
// :(
public static class EmployeeType
{
public const int WorkerEmployeeType = 0;
public const int SupervisorEmployeeType = 1;
public const int ManagerEmployeeType = 2;
}
////////////////////////////////////////777
// :)
public enum EmployeeType
{
Worker,
Supervisor,
Manager
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment