//----------------------------------------------------------------------- // // Copyright (c) 2010 Deltares. All rights reserved. // // B.S.T. The // tom.the@deltares.nl // 04-11-2010 // n.a. //----------------------------------------------------------------------- namespace Deltares.Dam.Data { using System; [AttributeUsage(AttributeTargets.Property)] public class CsvExportColumnAttribute : Attribute { public CsvExportColumnAttribute(string name, int index) { Name = name; Index = index; } public string Name { get; private set; } public int Index { get; private set; } } }