Files
VAR.DatabaseExplorer/ServerExplorer/Code/DataTransfer/Column.cs
2017-01-27 11:20:39 +01:00

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; }
}
}