20 lines
421 B
C#
20 lines
421 B
C#
|
|
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace ServerExplorer.Code.DataTransfer
|
|
{
|
|
[Serializable]
|
|
public class Column
|
|
{
|
|
[XmlAttribute]
|
|
public string Name { get; set; }
|
|
[XmlAttribute]
|
|
public string Type { get; set; }
|
|
[XmlAttribute]
|
|
public int Size { get; set; }
|
|
[XmlAttribute]
|
|
public bool PK { get; set; }
|
|
}
|
|
}
|