mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
595 B
32 lines
595 B
using System;
|
|
|
|
namespace ZeroLevel.DocumentObjectModel
|
|
{
|
|
public enum AssotiationRelation : Int32
|
|
{
|
|
/// <summary>
|
|
/// Relation type not defined
|
|
/// </summary>
|
|
Uncknown = 0,
|
|
|
|
/// <summary>
|
|
/// Mentioned
|
|
/// </summary>
|
|
Mentions = 1,
|
|
|
|
/// <summary>
|
|
/// It tells about
|
|
/// </summary>
|
|
About = 2,
|
|
|
|
/// <summary>
|
|
/// Previous version update
|
|
/// </summary>
|
|
UpdateOf = 3,
|
|
|
|
/// <summary>
|
|
/// Based on
|
|
/// </summary>
|
|
BasedOn = 4
|
|
}
|
|
} |