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.
Zero/ZeroLevel/Services/DOM/Model/AssotiationRelation.cs

29 lines
690 B

6 years ago
using System;
namespace ZeroLevel.DocumentObjectModel
{
public enum AssotiationRelation : Int32
{
/// <summary>
/// Тип отношения не определен
/// </summary>
Uncknown = 0,
/// <summary>
/// Упоминается
/// </summary>
Mentions = 1,
/// <summary>
/// Рассказывается о
/// </summary>
About = 2,
/// <summary>
/// Обновление предыдущей версии
/// </summary>
UpdateOf = 3,
/// <summary>
/// Основано на
/// </summary>
BasedOn = 4
}
}

Powered by TurnKey Linux.