Skip to content

Instantly share code, notes, and snippets.

@DavidSSL
Created May 1, 2013 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidSSL/5e192558b0c253cb620f to your computer and use it in GitHub Desktop.
Save DavidSSL/5e192558b0c253cb620f to your computer and use it in GitHub Desktop.
namespace WickedDomainModels.Model
{
public class ExpirationType : Enumeration
{
private ExpirationType(int value, string displayName)
: base(value, displayName)
{
}
public static readonly ExpirationType Assignment = new ExpirationType(1, "Assignment");
public static readonly ExpirationType Fixed = new ExpirationType(1, "Fixed");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment