using System.Reflection; namespace WorkerService.Models.Reporting { /// /// Report output column setting /// public class OutputColumn { /// /// Column name /// public string Name { get; set; } /// /// Property to bind to column /// public PropertyInfo Property { get; set; } /// /// Output column settings attribute /// public OutputColumnAttribute Attribute { get; set; } } }