Skip to content

Instantly share code, notes, and snippets.

@greenygh0st
Created July 21, 2016 15:40
Show Gist options
  • Save greenygh0st/9bf57703f6752e83972525aa25fe6254 to your computer and use it in GitHub Desktop.
Save greenygh0st/9bf57703f6752e83972525aa25fe6254 to your computer and use it in GitHub Desktop.
public sealed class Operation
{
public static readonly Operation Name1 = new Operation("Name1");
public static readonly Operation Name2 = new Operation("Name2");
private Operation(string value)
{
Value = value;
}
public string Value { get; private set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment