#region Disclaimer / License
// Copyright (C) 2009, Kenneth Skovhede
// http://www.hexad.dk, opensource@hexad.dk
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
#endregion
namespace globalElement
{
///
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://weblogs.asp.net/cazzu/globalElements.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="http://weblogs.asp.net/cazzu/globalElements.xsd", IsNullable=false)]
public class pubs
{
private PublisherCollection _publisher;
///
[System.Xml.Serialization.XmlElementAttribute("Publisher")]
public PublisherCollection Publisher
{
get
{
return this._publisher;
}
set
{
this._publisher = value;
}
}
}
///
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://weblogs.asp.net/cazzu/globalElements.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="http://weblogs.asp.net/cazzu/globalElements.xsd", IsNullable=false)]
public class Publisher
{
private string _pub_id;
private string _pub_name;
private string _city;
private string _state;
private string _country;
private int _date;
private bool _dateSpecified;
///
public string pub_id
{
get
{
return this._pub_id;
}
set
{
this._pub_id = value;
}
}
///
public string pub_name
{
get
{
return this._pub_name;
}
set
{
this._pub_name = value;
}
}
///
public string city
{
get
{
return this._city;
}
set
{
this._city = value;
}
}
///
public string state
{
get
{
return this._state;
}
set
{
this._state = value;
}
}
///
public string country
{
get
{
return this._country;
}
set
{
this._country = value;
}
}
///
public int date
{
get
{
return this._date;
}
set
{
this._date = value;
}
}
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool dateSpecified
{
get
{
return this._dateSpecified;
}
set
{
this._dateSpecified = value;
}
}
}
public class PublisherCollection : System.Collections.CollectionBase
{
public Publisher this[int idx]
{
get
{
return ((Publisher)(base.InnerList[idx]));
}
set
{
base.InnerList[idx] = value;
}
}
public int Add(Publisher value)
{
return base.InnerList.Add(value);
}
}
}