aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/PutResult.cs
blob: f11ac13888c3758ff465ead4352b59b8a68ce03e (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
    }
}