Skip to content

Instantly share code, notes, and snippets.

@christopherhouse
Last active December 16, 2015 23:19
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 christopherhouse/5513479 to your computer and use it in GitHub Desktop.
Save christopherhouse/5513479 to your computer and use it in GitHub Desktop.
using System;
using ThirteenDaysAWeek.TitleAttribute.Models.Attributes;
namespace ThirteenDaysAWeek.TitleAttribute.Models
{
public enum ReportType
{
[ReportTitle(ReportTitle = "Annual Sales Recap", Color = ConsoleColor.DarkGreen)]
AnnualSalesRecap,
[ReportTitle(ReportTitle = "Sales By Region", Color = ConsoleColor.DarkRed)]
SalesByRegion
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment