~iwarford/do-plugins/fart-plugin-fwiw

« back to all changes in this revision

Viewing changes to RememberTheMilk/src/RtmNet/DateGranularity.cs

  • Committer: Jason Jones
  • Date: 2008-12-24 04:45:02 UTC
  • mfrom: (335.1.9 do-plugins)
  • Revision ID: jasonedwardjones@gmail.com-20081224044502-ra56ym06cp1iqs7t
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

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