//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
// File time 09-07-05 11:02
//
// This source code was auto-generated by WsContractFirst, Version=0.5.0.5154
namespace Authentication
{
using System.Diagnostics;
using System.Xml.Serialization;
using System;
using System.Web.Services.Protocols;
using System.ComponentModel;
using System.Web.Services;
///
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/Authentication.xsd", TypeName="User")]
[System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ExpandableObjectConverter))]
public class User
{
///
private int id;
///
private string firstName;
///
private string lastName;
///
private string email;
///
private string password;
public User()
{
}
public User(int id, string firstName, string lastName, string email, string password)
{
this.id = id;
this.firstName = firstName;
this.lastName = lastName;
this.email = email;
this.password = password;
}
[System.Xml.Serialization.XmlElementAttribute("id")]
public int Id
{
get
{
return this.id;
}
set
{
this.id = value;
}
}
[System.Xml.Serialization.XmlElementAttribute("firstName")]
public string FirstName
{
get
{
return this.firstName;
}
set
{
this.firstName = value;
}
}
[System.Xml.Serialization.XmlElementAttribute("lastName")]
public string LastName
{
get
{
return this.lastName;
}
set
{
this.lastName = value;
}
}
[System.Xml.Serialization.XmlElementAttribute("email")]
public string Email
{
get
{
return this.email;
}
set
{
this.email = value;
}
}
[System.Xml.Serialization.XmlElementAttribute("password")]
public string Password
{
get
{
return this.password;
}
set
{
this.password = value;
}
}
}
}