using System; namespace WorkerService.Models.Reporting { /// /// Excel output table specification /// public class OutputTableAttribute : Attribute { /// /// Output tab name /// public string TabName { get; set; } /// /// Table name /// public string TableName { get; set; } /// /// Whether or not merged header should be shown /// public bool ShowHeader { get; set; } } }