24 lines
498 B
C#
24 lines
498 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace VAR.DatabaseExplorer.Code.DataTransfer
|
|
{
|
|
[Serializable]
|
|
public class Procedure
|
|
{
|
|
[XmlAttribute]
|
|
public string Schema { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string Name { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string Type { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public DateTime CreateDate { get; set; }
|
|
|
|
[XmlElement]
|
|
public string Definition { get; set; }
|
|
}
|
|
} |