1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
using System;
namespace FlickrNet
{
/// <summary>
/// DateGranularity, used for setting taken date in <see cref="Flickr.PhotosSetDates(string, DateTime, DateGranularity)"/>
/// or <see cref="Flickr.PhotosSetDates(string, DateTime, DateTime, DateGranularity)"/>.
/// </summary>
public enum DateGranularity
{
/// <summary>
/// The date specified is the exact date the photograph was taken.
/// </summary>
FullDate = 0,
/// <summary>
/// The date specified is the year and month the photograph was taken.
/// </summary>
YearMonthOnly = 4,
/// <summary>
/// The date specified is the year the photograph was taken.
/// </summary>
YearOnly = 6
}
}
|