using System;
using System.Xml.Serialization;
using System.Xml.Schema;
namespace FlickrNet
{
///
/// Summary description for PhotoLocation.
///
public class PhotoLocation
{
///
/// Default constructor
///
public PhotoLocation()
{
}
///
/// The latitude of the photo.
///
[XmlAttribute("latitude", Form=XmlSchemaForm.Unqualified)]
public double Latitude;
///
/// The longitude of the photo.
///
[XmlAttribute("longitude", Form=XmlSchemaForm.Unqualified)]
public double Longitude;
///
/// The accuracy of the location information. See for accuracy levels.
///
[XmlAttribute("accuracy", Form=XmlSchemaForm.Unqualified)]
public GeoAccuracy Accuracy;
}
}