Skip to content

Instantly share code, notes, and snippets.

@christopherhouse
Last active December 16, 2015 23:21
Show Gist options
  • Save christopherhouse/5513348 to your computer and use it in GitHub Desktop.
Save christopherhouse/5513348 to your computer and use it in GitHub Desktop.
using System;
namespace ThirteenDaysAWeek.TitleAttribute.Models.Attributes
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public class ReportTitleAttribute : Attribute
{
public string ReportTitle { get; set; }
public ConsoleColor Color { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment