25 lines
529 B
C#
25 lines
529 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace VAR.DatabaseExplorer.Code.DataTransfer
|
|
{
|
|
[Serializable]
|
|
public class Table
|
|
{
|
|
[XmlAttribute]
|
|
public string Schema { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string Name { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string Type { get; set; }
|
|
|
|
[XmlArray]
|
|
public List<Column> Columns { get; set; }
|
|
|
|
[XmlElement]
|
|
public string ViewDefinition { get; set; }
|
|
}
|
|
} |