aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/PutResult.cs
blob: cecf86e648ed8693fcd6860594b855e647e7fe52 (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>
        Create,
        /// <summary>
        /// Indicates the item exists already and is modified.
        /// </summary>
        Modify
    }
}