File: SqlServerColumnEditorWidget.cs

package info (click to toggle)
monodevelop-database 4.0.12%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,216 kB
  • ctags: 4,147
  • sloc: cs: 25,913; xml: 4,043; makefile: 792; sh: 621
file content (18 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

using System;

namespace MonoDevelop.Database.Sql.SqlServer
{
	
	
	[System.ComponentModel.Category("MonoDevelop.Database.Sql.SqlServer")]
	[System.ComponentModel.ToolboxItem(true)]
	public partial class SqlServerColumnEditorWidget : Gtk.Bin
	{
		
		public SqlServerColumnEditorWidget()
		{
			this.Build();
		}
	}
}