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