namespace Timeline.Models
{
    /// 
    /// Represents the result of a "put" operation.
    /// 
    public enum PutResult
    {
        /// 
        /// Indicates the item did not exist and now is created.
        /// 
        Create,
        /// 
        /// Indicates the item exists already and is modified.
        /// 
        Modify
    }
}