17 lines
353 B
C#
17 lines
353 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace SyntaxGenerator
|
|
{
|
|
|
|
public class FieldDescription
|
|
{
|
|
[XmlAttribute("Type")]
|
|
public string FieldType { get; set; }
|
|
|
|
[XmlAttribute("Name")]
|
|
public string FieldName { get; set; }
|
|
|
|
[XmlAttribute("Nullable")]
|
|
public bool FieldIsNullable { get; set; }
|
|
}
|
|
} |