DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
ColumnNameAttribute.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Mapping {
4  [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
5  public sealed class ColumnNameAttribute : Attribute {
7  : this(null) {
8  }
9 
10  public ColumnNameAttribute(string columnName) {
11  ColumnName = columnName;
12  }
13 
14  public string ColumnName { get; set; }
15  }
16 }