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