aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/PutResult.cs
blob: 544602ebd17849b44f8582f15ce8b6ada56a6b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Timeline.Models
{
    /// <summary>
    /// Represents the result of a "put" operation.
    /// </summary>
    public enum PutResult
    {
        /// <summary>
        /// Indicates the item did not exist and now is created.
        /// </summary>
        Created,
        /// <summary>
        /// Indicates the item exists already and is modified.
        /// </summary>
        Modified
    }
}