using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace MESWebSite.CommonClass
{
    [AttributeUsage(AttributeTargets.Property)]
    public class ExportHeaderAttribute : Attribute
    {
        public string HeaderName { get; set; }
    }
}