1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
using System;
using System.Xml.Serialization;
using System.Xml.Schema;
namespace FlickrNet
{
/// <summary>
/// Summary description for PhotoLocation.
/// </summary>
public class PhotoLocation
{
/// <summary>
/// Default constructor
/// </summary>
public PhotoLocation()
{
}
/// <summary>
/// The latitude of the photo.
/// </summary>
[XmlAttribute("latitude", Form=XmlSchemaForm.Unqualified)]
public double Latitude;
/// <summary>
/// The longitude of the photo.
/// </summary>
[XmlAttribute("longitude", Form=XmlSchemaForm.Unqualified)]
public double Longitude;
/// <summary>
/// The accuracy of the location information. See <see cref="GeoAccuracy"/> for accuracy levels.
/// </summary>
[XmlAttribute("accuracy", Form=XmlSchemaForm.Unqualified)]
public GeoAccuracy Accuracy;
}
}
|