17 lines
313 B
C#
17 lines
313 B
C#
using MySql.Data.MySqlClient;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Articulate.Attributes
|
|
{
|
|
public class Column : Attribute
|
|
{
|
|
public MySqlDbType Type { get; set; }
|
|
|
|
public int Size { get; set; }
|
|
|
|
public bool Primary { get; set; }
|
|
}
|
|
}
|