using System;
namespace FlickrNet
{
///
/// DateGranularity, used for setting taken date in
/// or .
///
public enum DateGranularity
{
///
/// The date specified is the exact date the photograph was taken.
///
FullDate = 0,
///
/// The date specified is the year and month the photograph was taken.
///
YearMonthOnly = 4,
///
/// The date specified is the year the photograph was taken.
///
YearOnly = 6
}
}