using System;
namespace ZeroLevel.DocumentObjectModel
{
public enum AssotiationRelation : Int32
{
///
/// Relation type not defined
///
Uncknown = 0,
///
/// Mentioned
///
Mentions = 1,
///
/// It tells about
///
About = 2,
///
/// Previous version update
///
UpdateOf = 3,
///
/// Based on
///
BasedOn = 4
}
}